Bolt\Filesystem\Plugin\Authorized::handle PHP Метод

handle() публичный Метод

Returns whether you are authorized to do something with a file or directory.
public handle ( string $path ) : boolean
$path string
Результат boolean
    public function handle($path)
    {
        $file = $this->filesystem->getFile($path);
        return $this->filePermissions->authorized($file->getMountPoint(), $file->getPath());
    }