FtpClient\FtpClient::__call PHP Метод

__call() публичный Метод

Wrap the FTP PHP functions to call as method of FtpClient object. The connection is automaticaly passed to the FTP PHP functions.
public __call ( string $method, array $arguments ) : mixed
$method string
$arguments array
Результат mixed
    public function __call($method, array $arguments)
    {
        return $this->ftp->__call($method, $arguments);
    }