• File: CorruptedPathDetected.php
  • Full Path: /home/masbinta/public_html/core/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);
    }
}