]> _ Git - cubist_net.git/commitdiff
wip #5700
authorVincent Vanwaelscappel <vincent@cubedesigners.com>
Thu, 26 Jan 2023 14:26:17 +0000 (15:26 +0100)
committerVincent Vanwaelscappel <vincent@cubedesigners.com>
Thu, 26 Jan 2023 14:26:17 +0000 (15:26 +0100)
src/Transfer/Local.php [new file with mode: 0644]

diff --git a/src/Transfer/Local.php b/src/Transfer/Local.php
new file mode 100644 (file)
index 0000000..bd47593
--- /dev/null
@@ -0,0 +1,21 @@
+<?php
+
+namespace Cubist\Net\Transfer;
+
+class Local extends Driver {
+       protected $_basePath = '';
+
+       /**
+        * @param string $basePath
+        */
+       public function setBasePath($basePath) {
+               $this->_basePath = $basePath;
+       }
+
+       /**
+        * @return string
+        */
+       public function getBasePath() {
+               return $this->_basePath;
+       }
+}
\ No newline at end of file