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

declare(strict_types=1);

namespace
League\Flysystem\Ftp;

class
RawListFtpConnectivityChecker implements ConnectivityChecker
{
   
/**
     * @inheritDoc
     */
   
public function isConnected($connection): bool
   
{
        return
$connection !== false && @ftp_rawlist($connection, './') !== false;
    }
}