From a67603800a93bde7294c450a99a862d2f51b219a Mon Sep 17 00:00:00 2001 From: Vincent Vanwaelscappel Date: Tue, 7 Nov 2023 12:19:05 +0100 Subject: [PATCH] wip #6446 --- src/Transfer/FTP.php | 5 +++++ src/Transfer/SFTP.php | 1 - 2 files changed, 5 insertions(+), 1 deletion(-) 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 { -- 2.39.5