One Hat Cyber Team
Your IP :
3.135.209.247
Server IP :
104.21.16.1
Server :
Linux agrigation-prod 5.15.0-67-generic #74-Ubuntu SMP Wed Feb 22 14:14:39 UTC 2023 x86_64
Server Software :
nginx/1.24.0
PHP Version :
7.4.33
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
forge
/
gftag.com
/
vendor
/
league
/
flysystem
/
src
/
View File Name :
NotSupportedException.php
<?php namespace League\Flysystem; use RuntimeException; use SplFileInfo; class NotSupportedException extends RuntimeException implements FilesystemException { /** * 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); } }