PATH:
home
/
letacommog
/
laindinois
/
wp-content
/
plugins
/
wilcity-mobile-app
/
vendor
/
league
/
flysystem
/
src
<?php namespace League\Flysystem; use RuntimeException; use SplFileInfo; class NotSupportedException extends RuntimeException { /** * Create a new exception for a link. * * @param SplFileInfo $file * * @return static */ public static function forLink(SplFileInfo $file) { $message = 'Links are not supported, encountered link at '; return new static($message . $file->getPathname()); } /** * Create a new exception for a link. * * @param string $systemType * * @return static */ public static function forFtpSystemType($systemType) { $message = "The FTP system type '$systemType' is currently not supported."; return new static($message); } }
[+]
..
[-] ConfigAwareTrait.php
[edit]
[-] FileNotFoundException.php
[edit]
[+]
Plugin
[-] Config.php
[edit]
[-] Filesystem.php
[edit]
[-] ReadInterface.php
[edit]
[-] RootViolationException.php
[edit]
[-] Util.php
[edit]
[-] Exception.php
[edit]
[-] FilesystemNotFoundException.php
[edit]
[-] UnreadableFileException.php
[edit]
[-] AdapterInterface.php
[edit]
[+]
Util
[+]
Adapter
[-] Handler.php
[edit]
[-] FilesystemInterface.php
[edit]
[-] MountManager.php
[edit]
[-] FileExistsException.php
[edit]
[-] SafeStorage.php
[edit]
[-] PluginInterface.php
[edit]
[-] Directory.php
[edit]
[-] File.php
[edit]
[-] NotSupportedException.php
[edit]