PATH:
opt
/
cpanel
/
ea-wappspector
/
vendor
/
league
/
flysystem
/
src
<?php declare(strict_types=1); namespace League\Flysystem; use LogicException; class UnableToMountFilesystem extends LogicException implements FilesystemException { /** * @param mixed $key */ public static function becauseTheKeyIsNotValid($key): UnableToMountFilesystem { return new UnableToMountFilesystem( 'Unable to mount filesystem, key was invalid. String expected, received: ' . gettype($key) ); } /** * @param mixed $filesystem */ public static function becauseTheFilesystemWasNotValid($filesystem): UnableToMountFilesystem { $received = is_object($filesystem) ? get_class($filesystem) : gettype($filesystem); return new UnableToMountFilesystem( 'Unable to mount filesystem, filesystem was invalid. Instance of ' . FilesystemOperator::class . ' expected, received: ' . $received ); } }
[-] FileAttributes.php
[edit]
[-] UnableToCheckDirectoryExistence.php
[edit]
[-] UnableToListContents.php
[edit]
[-] UnableToMountFilesystem.php
[edit]
[-] UnableToDeleteDirectory.php
[edit]
[-] FilesystemWriter.php
[edit]
[-] UnableToCopyFile.php
[edit]
[+]
..
[-] StorageAttributes.php
[edit]
[-] FilesystemOperationFailed.php
[edit]
[-] Config.php
[edit]
[-] CorruptedPathDetected.php
[edit]
[-] UnableToMoveFile.php
[edit]
[-] CalculateChecksumFromStream.php
[edit]
[-] FilesystemReader.php
[edit]
[-] FilesystemException.php
[edit]
[-] UnreadableFileEncountered.php
[edit]
[-] ResolveIdenticalPathConflict.php
[edit]
[-] SymbolicLinkEncountered.php
[edit]
[-] Visibility.php
[edit]
[-] ChecksumProvider.php
[edit]
[-] UnableToCheckFileExistence.php
[edit]
[-] ProxyArrayAccessToProperties.php
[edit]
[-] DecoratedAdapter.php
[edit]
[-] UnableToProvideChecksum.php
[edit]
[-] UnableToReadFile.php
[edit]
[-] WhitespacePathNormalizer.php
[edit]
[-] FilesystemAdapter.php
[edit]
[-] DirectoryListing.php
[edit]
[-] InvalidStreamProvided.php
[edit]
[-] UnableToWriteFile.php
[edit]
[-] UnableToSetVisibility.php
[edit]
[-] DirectoryAttributes.php
[edit]
[-] ChecksumAlgoIsNotSupported.php
[edit]
[-] PortableVisibilityGuard.php
[edit]
[+]
UnixVisibility
[+]
UrlGeneration
[-] PathNormalizer.php
[edit]
[-] MountManager.php
[edit]
[-] UnableToRetrieveMetadata.php
[edit]
[-] InvalidVisibilityProvided.php
[edit]
[-] UnableToDeleteFile.php
[edit]
[-] UnableToGeneratePublicUrl.php
[edit]
[-] Filesystem.php
[edit]
[-] UnableToResolveFilesystemMount.php
[edit]
[-] FilesystemOperator.php
[edit]
[-] UnableToCreateDirectory.php
[edit]
[-] UnableToCheckExistence.php
[edit]
[-] UnableToGenerateTemporaryUrl.php
[edit]
[-] PathPrefixer.php
[edit]
[-] PathTraversalDetected.php
[edit]