%PDF- %PDF-
| Direktori : /var/www/vendor/league/flysystem-sftp/ |
| Current File : /var/www/vendor/league/flysystem-sftp/SimpleConnectivityChecker.php |
<?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();
}
}