Passed
Push — master ( 9ef119...6b563b )
by Prateek
01:58
created
src/Models/FileSystem.php 1 patch
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -5,19 +5,19 @@
 block discarded – undo
5 5
 
6 6
 class FileSystem extends SymphonyFilesystem
7 7
 {
8
-	public function clone($src, $dest){
9
-		$src = $this->getFullSourcePath($src);
8
+    public function clone($src, $dest){
9
+        $src = $this->getFullSourcePath($src);
10 10
 
11
-		$dest = base_path($dest);
11
+        $dest = base_path($dest);
12 12
 
13
-		if (is_dir($src)) {
14
-			$this->mirror($src, $dest."/".basename($src));
15
-		}else{
16
-			$this->copy($src, $dest);
17
-		}
18
-	}
13
+        if (is_dir($src)) {
14
+            $this->mirror($src, $dest."/".basename($src));
15
+        }else{
16
+            $this->copy($src, $dest);
17
+        }
18
+    }
19 19
 
20
-	public function getFullSourcePath($path){
21
-		return realpath(__DIR__ . "/../resources/" . $path);
22
-	}
20
+    public function getFullSourcePath($path){
21
+        return realpath(__DIR__ . "/../resources/" . $path);
22
+    }
23 23
 }
Please login to merge, or discard this patch.