<?phpnamespaceLeague\Flysystem\Adapter\Polyfill;useLogicException;traitNotSupportingVisibilityTrait{/** * Get the visibility of a file. * * @param string $path * * @throws LogicException */publicfunctiongetVisibility($path){thrownewLogicException(get_class($this).' does not support visibility. Path: '.$path);}/** * Set the visibility for a file. * * @param string $path * @param string $visibility * * @throws LogicException */publicfunctionsetVisibility($path,$visibility){thrownewLogicException(get_class($this).' does not support visibility. Path: '.$path.', visibility: '.$visibility);}}