msd Backup hinzugefügt
This commit is contained in:
16
msd/vendor/league/flysystem-sftp/UnableToEstablishAuthenticityOfHost.php
vendored
Normal file
16
msd/vendor/league/flysystem-sftp/UnableToEstablishAuthenticityOfHost.php
vendored
Normal file
@ -0,0 +1,16 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace League\Flysystem\PhpseclibV2;
|
||||
|
||||
use League\Flysystem\FilesystemException;
|
||||
use RuntimeException;
|
||||
|
||||
class UnableToEstablishAuthenticityOfHost extends RuntimeException implements FilesystemException
|
||||
{
|
||||
public static function becauseTheAuthenticityCantBeEstablished(string $host): UnableToEstablishAuthenticityOfHost
|
||||
{
|
||||
return new UnableToEstablishAuthenticityOfHost("The authenticity of host $host can't be established.");
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user