Seditio Source
Root |
./othercms/dle15_0/upload/engine/classes/composer/vendor/league/flysystem-ftp/UnableToFtpPath.php
<?php

declare(strict_types=1);

namespace
League\Flysystem\Ftp;

use
RuntimeException;

final class
UnableToFtpPath extends RuntimeException implements FtpConnectionException
{
    public static function
forPath(string $path): UnableToFtpPath
   
{
        return new
UnableToFtpPath("FTP path $path not found.");
    }
}