Neos\Flow\ResourceManagement\Storage\WritableFileSystemStorage::fixFilePermissions PHP 메소드

fixFilePermissions() 보호된 메소드

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