home/mip/mip/vendor/league/flysystem/src/CorruptedPathDetected.php 0000644 00000000474 15152066256 0021407 0 ustar 00 <?php
namespace League\Flysystem;
use RuntimeException;
final class CorruptedPathDetected extends RuntimeException implements FilesystemException
{
public static function forPath(string $path): CorruptedPathDetected
{
return new CorruptedPathDetected("Corrupted path detected: " . $path);
}
}