From: Vincent Vanwaelscappel Date: Thu, 26 Jan 2023 15:36:35 +0000 (+0100) Subject: wip #5700 @0.5 X-Git-Url: http://git.cubedesigners.com/?a=commitdiff_plain;h=ffc935945e8379dd2ad21324c7ac01c719efaf79;p=cubist_util.git wip #5700 @0.5 --- diff --git a/src/CommandLine/Rclone.php b/src/CommandLine/Rclone.php new file mode 100644 index 0000000..d93c1e5 --- /dev/null +++ b/src/CommandLine/Rclone.php @@ -0,0 +1,60 @@ +_prog, $output, $error); + } + + public function getSrc() + { + return $this->_src; + } + + public function getDest() + { + return $this->_dest; + } + + public function getMirror() + { + return $this->_mirror; + } + + public function setSrc($src) + { + $this->_src = $src; + return $this; + } + + public function setDest($dest) + { + $this->_dest = $dest; + return $this; + } + + public function setMirror($mirror) + { + $this->_mirror = $mirror; + return $this; + } +} \ No newline at end of file