App\Console\Commands\XeInstall::stepDirPermission PHP Method

stepDirPermission() protected method

stepDirPermission
protected stepDirPermission ( ) : void
return void
    protected function stepDirPermission()
    {
        try {
            $this->setStorageDirPermission();
        } catch (\Exception $e) {
            $this->error('Fail to change storage directory permission. Check directory after install.' . PHP_EOL . ' message: ' . $e->getMessage());
        }
        try {
            $this->setBootCacheDirPermission();
        } catch (\Exception $e) {
            $this->error('Fail to change bootstrap cache directory permission. Check directory after install.' . PHP_EOL . ' message: ' . $e->getMessage());
        }
    }