]> _ Git - cubist_net.git/commitdiff
wip #6446
authorVincent Vanwaelscappel <vincent@cubedesigners.com>
Tue, 7 Nov 2023 11:19:05 +0000 (12:19 +0100)
committerVincent Vanwaelscappel <vincent@cubedesigners.com>
Tue, 7 Nov 2023 11:19:05 +0000 (12:19 +0100)
src/Transfer/FTP.php
src/Transfer/SFTP.php

index 0c378b5ba90a3f72db03a092ed646c8975ed7b8b..8a38f2cfa2769ce2b046ca45c2bf9fbfd002eb6a 100644 (file)
@@ -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
index ace571743276786c1411908ffce3f5ffa51fcdeb..8f25e4b4f946ceae366cb80826d40603f26f7373 100644 (file)
@@ -3,7 +3,6 @@
 namespace Cubist\Net\Transfer;
 
 use Cubist\Util\CommandLine\Rclone;
-use Cubist\Util\CommandLine\Rsync;
 
 class SFTP extends Driver {