File "UnreadableFileException.php"
Full Path: /home/fundopuh/trader.fxex.org/vendor/league/flysystem/src/UnreadableFileException.php
File size: 345 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace League\Flysystem;
use SplFileInfo;
class UnreadableFileException extends Exception
{
public static function forFileInfo(SplFileInfo $fileInfo)
{
return new static(
sprintf(
'Unreadable file encountered: %s',
$fileInfo->getRealPath()
)
);
}
}