Passed
Push — master ( d76988...9ef119 )
by Prateek
04:31 queued 02:30
created
src/Generators/Route.php 2 patches
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -33,8 +33,8 @@  discard block
 block discarded – undo
33 33
         $this->insertIntoFile(
34 34
             $webRouteFile,
35 35
             "<?php\n",
36
-			"use App\\Http\\Controllers\\".$this->module->getModelName()."Controller;\n"
37
-		);
36
+            "use App\\Http\\Controllers\\".$this->module->getModelName()."Controller;\n"
37
+        );
38 38
 
39 39
         $this->insertIntoFile(
40 40
             $webRouteFile,
@@ -42,13 +42,13 @@  discard block
 block discarded – undo
42 42
             "\n".$this->getTabs(1)."Route::resource('".$this->module->getModuleName()."', ".$this->module->getModelName()."Controller::class);"
43 43
         );
44 44
 
45
-		$generatedFiles[] = $webRouteFile;
45
+        $generatedFiles[] = $webRouteFile;
46 46
 		
47 47
         $this->insertIntoFile(
48 48
             $backendWebRouteFile,
49 49
             "<?php\n",
50
-			"use App\\Http\\Controllers\\".$this->module->getModelName()."Controller;\n"
51
-		);
50
+            "use App\\Http\\Controllers\\".$this->module->getModelName()."Controller;\n"
51
+        );
52 52
 
53 53
         $this->insertIntoFile(
54 54
             $backendWebRouteFile,
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
 
39 39
         $this->insertIntoFile(
40 40
             $webRouteFile,
41
-            "/" . "* Insert your routes here */",
41
+            "/"."* Insert your routes here */",
42 42
             "\n".$this->getTabs(1)."Route::resource('".$this->module->getModuleName()."', ".$this->module->getModelName()."Controller::class);"
43 43
         );
44 44
 
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
 
53 53
         $this->insertIntoFile(
54 54
             $backendWebRouteFile,
55
-            "/" . "* Insert your routes here */",
55
+            "/"."* Insert your routes here */",
56 56
             "\n".$this->getTabs(1)."Route::resource('".$this->module->getModuleName()."', ".$this->module->getModelName()."Controller::class);"
57 57
         );
58 58
 
Please login to merge, or discard this patch.
src/Generators/BaseGenerator.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -43,10 +43,10 @@  discard block
 block discarded – undo
43 43
     }
44 44
 
45 45
     public function initializeFile($fullFilePath, $stub, $initializeWithText = false) {
46
-        if(file_exists($fullFilePath)){
46
+        if (file_exists($fullFilePath)) {
47 47
             unlink($fullFilePath);
48 48
         }
49
-        $seederTemplate = ($initializeWithText===false) ? $this->buildTemplate($stub) : $initializeWithText;
49
+        $seederTemplate = ($initializeWithText === false) ? $this->buildTemplate($stub) : $initializeWithText;
50 50
         file_put_contents($fullFilePath, $seederTemplate);
51 51
         return $fullFilePath;
52 52
     }
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
     }
69 69
 
70 70
     public function insertIntoFile($file_path, $insert_marker, $text, $after = true) {
71
-        $contents = str_replace("\r",'', file_get_contents($file_path));
71
+        $contents = str_replace("\r", '', file_get_contents($file_path));
72 72
         $new_contents = ($after) ? str_replace($insert_marker, $insert_marker.$text, $contents) : str_replace($insert_marker, $text.$insert_marker, $contents); 
73 73
         return file_put_contents($file_path, $new_contents);
74 74
     }
Please login to merge, or discard this patch.
src/Generators/Seeder.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
         file_put_contents($fullFilePath, $factoryTemplate);
24 24
         $generatedFiles[] = $fullFilePath;
25 25
         
26
-        $laragenSeederFile = (self::$initializeFlag++ == 0) ? $this->initializeFile($this->getPath("database/seeds/")."LaragenSeeder.php", 'Seeder') :  $this->getPath("database/seeds/")."LaragenSeeder.php";
26
+        $laragenSeederFile = (self::$initializeFlag++ == 0) ? $this->initializeFile($this->getPath("database/seeds/")."LaragenSeeder.php", 'Seeder') : $this->getPath("database/seeds/")."LaragenSeeder.php";
27 27
 
28 28
         $this->insertIntoFile(
29 29
             $laragenSeederFile,
@@ -93,23 +93,23 @@  discard block
 block discarded – undo
93 93
 
94 94
         $dataDefinition = "";
95 95
         foreach ($this->module->getNativeData() as $columns) {
96
-            foreach($columns as $column => $type){
96
+            foreach ($columns as $column => $type) {
97 97
                 $specialTypes = array_keys($specialTypesToDefinition);
98
-                if(in_array($column,$specialTypes)){
99
-                    $dataDefinition .= $this->getTabs(2) . "'{$column}'" . " => " . '$faker->' . $specialTypesToDefinition[$column];
100
-                } else{
101
-                    $dataDefinition .= $this->getTabs(2) . "'{$column}'" . " => " . '$faker->' . $typeToDefinition[$type];
98
+                if (in_array($column, $specialTypes)) {
99
+                    $dataDefinition .= $this->getTabs(2)."'{$column}'"." => ".'$faker->'.$specialTypesToDefinition[$column];
100
+                } else {
101
+                    $dataDefinition .= $this->getTabs(2)."'{$column}'"." => ".'$faker->'.$typeToDefinition[$type];
102 102
                 }
103 103
 
104
-                if($column != last($columns)) {
105
-                    $dataDefinition .= "," . PHP_EOL;
104
+                if ($column != last($columns)) {
105
+                    $dataDefinition .= ",".PHP_EOL;
106 106
                 }
107 107
             }
108 108
         }
109 109
         return $dataDefinition;
110 110
     }
111 111
 
112
-    protected function getForeignData(){
112
+    protected function getForeignData() {
113 113
         $columns = $this->module->getForeignColumns('parent');
114 114
 
115 115
         $foreignData = "";
@@ -121,8 +121,8 @@  discard block
 block discarded – undo
121 121
                     '{{parentModel}}' => ucfirst(camel_case(str_singular($parent)))
122 122
                 ]);
123 123
                 
124
-                if($column != last($columns)) {
125
-                    $foreignData .= "," . PHP_EOL;
124
+                if ($column != last($columns)) {
125
+                    $foreignData .= ",".PHP_EOL;
126 126
                 }
127 127
             }
128 128
         }
Please login to merge, or discard this patch.