msd Backup hinzugefügt
This commit is contained in:
15
msd/vendor/league/flysystem-sftp/SimpleConnectivityChecker.php
vendored
Normal file
15
msd/vendor/league/flysystem-sftp/SimpleConnectivityChecker.php
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace League\Flysystem\PhpseclibV2;
|
||||
|
||||
use phpseclib\Net\SFTP;
|
||||
|
||||
class SimpleConnectivityChecker implements ConnectivityChecker
|
||||
{
|
||||
public function isConnected(SFTP $connection): bool
|
||||
{
|
||||
return $connection->isConnected();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user