File "CorruptedPathDetected.php"
Full Path: /home/fundopuh/trader.fxex.org/vendor/league/flysystem/src/CorruptedPathDetected.php
File size: 356 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace League\Flysystem;
use LogicException;
class CorruptedPathDetected extends LogicException implements FilesystemException
{
/**
* @param string $path
* @return CorruptedPathDetected
*/
public static function forPath($path)
{
return new CorruptedPathDetected("Corrupted path detected: " . $path);
}
}