From: Vincent Vanwaelscappel Date: Tue, 7 Nov 2023 11:19:05 +0000 (+0100) Subject: wip #6446 X-Git-Url: http://git.cubedesigners.com/?a=commitdiff_plain;h=a67603800a93bde7294c450a99a862d2f51b219a;p=cubist_net.git wip #6446 --- diff --git a/src/Transfer/FTP.php b/src/Transfer/FTP.php index 0c378b5..8a38f2c 100644 --- a/src/Transfer/FTP.php +++ b/src/Transfer/FTP.php @@ -16,4 +16,9 @@ class FTP extends Driver { $lftp->execute(); return $lftp; } + + public function copyFile($source, $dest) + { + // TODO: Implement copyFile() method. + } } \ No newline at end of file diff --git a/src/Transfer/SFTP.php b/src/Transfer/SFTP.php index ace5717..8f25e4b 100644 --- a/src/Transfer/SFTP.php +++ b/src/Transfer/SFTP.php @@ -3,7 +3,6 @@ namespace Cubist\Net\Transfer; use Cubist\Util\CommandLine\Rclone; -use Cubist\Util\CommandLine\Rsync; class SFTP extends Driver {