Neos\Flow\ResourceManagement\Storage\WritableFileSystemStorage::fixFilePermissions PHP Méthode

fixFilePermissions() protected méthode

Fixes the permissions as needed for Flow to run fine in web and cli context.
protected fixFilePermissions ( string $pathAndFilename ) : void
$pathAndFilename string
Résultat void
    protected function fixFilePermissions($pathAndFilename)
    {
        @chmod($pathAndFilename, 0666 ^ umask());
    }