Passed
Push — master ( 4e0c2f...af0465 )
by Prateek
04:42 queued 02:26
created
src/Generators/Backend/View.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -8,13 +8,13 @@  discard block
 block discarded – undo
8 8
 {
9 9
     public function generate()
10 10
     {
11
-		$viewsToBeGenerated = ['index']; // To be generated dynamically
11
+        $viewsToBeGenerated = ['index']; // To be generated dynamically
12 12
 
13
-		$generatedFiles = [];
13
+        $generatedFiles = [];
14 14
 		
15 15
         foreach ($viewsToBeGenerated as $view) {
16 16
             $viewTemplate = $this->buildTemplate('Backend/Views/' . $view, [
17
-				'{{headings}}' 			 => $this->getHeadings(),
17
+                '{{headings}}' 			 => $this->getHeadings(),
18 18
                 '{{modelNameLowercase}}' => str_singular($this->module->getModuleName()),
19 19
                 '{{moduleName}}'         => $this->module->getModuleName()
20 20
             ]);
@@ -32,18 +32,18 @@  discard block
 block discarded – undo
32 32
         $this->insertIntoFile(
33 33
             $mainMenuFile,
34 34
             "{{-- Main Menu --}}",
35
-			""
36
-		);
35
+            ""
36
+        );
37 37
 
38 38
         return $generatedFiles;
39
-	}
39
+    }
40 40
 
41
-	public function getHeadings(){
41
+    public function getHeadings(){
42 42
         $columns = $this->module->getBackendColumnTitles();
43 43
         $headings= "";
44 44
         foreach ($columns as $column) {
45 45
             $headings .= "<th>".$column."</th>";
46 46
         }
47
-		return $headings;
48
-	}
47
+        return $headings;
48
+    }
49 49
 }
Please login to merge, or discard this patch.
src/Generators/Backend/Request.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -17,10 +17,10 @@
 block discarded – undo
17 17
         $fullFilePath = $this->getPath("app/Http/Requests/Backend/").$this->module->getModelName()."Request".".php";
18 18
         file_put_contents($fullFilePath, $controllerTemplate);
19 19
         return $fullFilePath;
20
-	}
20
+    }
21 21
 	
22
-	protected function getRules(){
23
-		// Todo
24
-		return "";
25
-	}
22
+    protected function getRules(){
23
+        // Todo
24
+        return "";
25
+    }
26 26
 }
Please login to merge, or discard this patch.
src/Generators/Common/Route.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -38,8 +38,8 @@  discard block
 block discarded – undo
38 38
         $this->insertIntoFile(
39 39
             $webRouteFile,
40 40
             "<?php\n",
41
-			"use App\\Http\\Controllers\\".$this->module->getModelName()."Controller;\n"
42
-		);
41
+            "use App\\Http\\Controllers\\".$this->module->getModelName()."Controller;\n"
42
+        );
43 43
 
44 44
         $this->insertIntoFile(
45 45
             $webRouteFile,
@@ -47,13 +47,13 @@  discard block
 block discarded – undo
47 47
             "\n".$this->getTabs(1)."Route::resource('".$this->module->getModuleName()."', ".$this->module->getModelName()."Controller::class);"
48 48
         );
49 49
 
50
-		$generatedFiles[] = $webRouteFile;
50
+        $generatedFiles[] = $webRouteFile;
51 51
 		
52 52
         $this->insertIntoFile(
53 53
             $backendWebRouteFile,
54 54
             "<?php\n",
55
-			"use App\\Http\\Controllers\\Backend\\".$this->module->getModelName()."Controller;\n"
56
-		);
55
+            "use App\\Http\\Controllers\\Backend\\".$this->module->getModelName()."Controller;\n"
56
+        );
57 57
 
58 58
         $this->insertIntoFile(
59 59
             $backendWebRouteFile,
Please login to merge, or discard this patch.