Your IP : 216.73.216.164


Current Path : /var/www/html/wp-content/plugins/wpide/vendor/league/flysystem/src/
Upload File :
Current File : /var/www/html/wp-content/plugins/wpide/vendor/league/flysystem/src/CorruptedPathDetected.php

<?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);
    }
}