Completed
Push — master ( bd0a16...63d8d6 )
by Raphael
02:54
created
src/Scaffolder/Compilers/Core/MigrationCompiler.php 1 patch
Braces   +4 added lines, -8 removed lines patch added patch discarded remove patch
@@ -37,8 +37,7 @@  discard block
 block discarded – undo
37 37
         if (File::exists(base_path('scaffolder-config/cache/migration_' . $hash . self::CACHE_EXT)))
38 38
         {
39 39
             return $this->store($modelName, $scaffolderConfig, '', new FileToCompile(true, $hash));
40
-        }
41
-        else
40
+        } else
42 41
         {
43 42
             $this->stub = $stub;
44 43
 
@@ -67,8 +66,7 @@  discard block
 block discarded – undo
67 66
         if ($fileToCompile->cached)
68 67
         {
69 68
             File::copy(base_path('scaffolder-config/cache/migration_' . $fileToCompile->hash . self::CACHE_EXT), $path);
70
-        }
71
-        else
69
+        } else
72 70
         {
73 71
             File::put(base_path('scaffolder-config/cache/migration_' . $fileToCompile->hash . self::CACHE_EXT), $compiled);
74 72
             File::copy(base_path('scaffolder-config/cache/migration_' . $fileToCompile->hash . self::CACHE_EXT), $path);
@@ -129,8 +127,7 @@  discard block
 block discarded – undo
129 127
                     if (count($modifierAndValue) == 2)
130 128
                     {
131 129
                         $parsedModifiers .= '->' . $modifierAndValue[0] . '(' . $modifierAndValue[1] . ')';
132
-                    }
133
-                    else
130
+                    } else
134 131
                     {
135 132
                         $parsedModifiers .= '->' . $modifierAndValue[0] . '()';
136 133
                     }
@@ -141,8 +138,7 @@  discard block
 block discarded – undo
141 138
             if ($field->index != 'none')
142 139
             {
143 140
                 $fields .= sprintf("\t\t\t\$table->%s('%s')%s->%s();" . PHP_EOL, $field->type->db, $field->name, $parsedModifiers, $field->index);
144
-            }
145
-            else
141
+            } else
146 142
             {
147 143
                 $fields .= sprintf("\t\t\t\$table->%s('%s')%s;" . PHP_EOL, $field->type->db, $field->name, $parsedModifiers);
148 144
             }
Please login to merge, or discard this patch.
src/Scaffolder/Compilers/View/IndexViewCompiler.php 1 patch
Braces   +4 added lines, -8 removed lines patch added patch discarded remove patch
@@ -26,8 +26,7 @@  discard block
 block discarded – undo
26 26
         if (File::exists(base_path('scaffolder-config/cache/view_index_' . $hash . self::CACHE_EXT)))
27 27
         {
28 28
             return $this->store($modelName, $scaffolderConfig, '', new FileToCompile(true, $hash));
29
-        }
30
-        else
29
+        } else
31 30
         {
32 31
             $this->stub = $stub;
33 32
 
@@ -58,8 +57,7 @@  discard block
 block discarded – undo
58 57
         if ($fileToCompile->cached)
59 58
         {
60 59
             File::copy(base_path('scaffolder-config/cache/view_index_' . $fileToCompile->hash . self::CACHE_EXT), $path);
61
-        }
62
-        else
60
+        } else
63 61
         {
64 62
             File::put(base_path('scaffolder-config/cache/view_index_' . $fileToCompile->hash . self::CACHE_EXT), $compiled);
65 63
             File::copy(base_path('scaffolder-config/cache/view_index_' . $fileToCompile->hash . self::CACHE_EXT), $path);
@@ -89,8 +87,7 @@  discard block
 block discarded – undo
89 87
                 {
90 88
                     $fields .= sprintf("{ data: '%s', name: '%s' }," . PHP_EOL, $field->name, $field->name);
91 89
                     $firstIteration = false;
92
-                }
93
-                else
90
+                } else
94 91
                 {
95 92
                     $fields .= sprintf("\t\t\t\t{ data: '%s', name: '%s' }," . PHP_EOL, $field->name, $field->name);
96 93
                 }
@@ -124,8 +121,7 @@  discard block
 block discarded – undo
124 121
                     $fields .= sprintf("<th>%s</th>" . PHP_EOL, ucfirst($field->name));
125 122
                     $firstIteration = false;
126 123
 
127
-                }
128
-                else
124
+                } else
129 125
                 {
130 126
                     $fields .= sprintf("\t\t\t<th>%s</th>" . PHP_EOL, ucfirst($field->name));
131 127
                 }
Please login to merge, or discard this patch.
src/Scaffolder/Compilers/View/EditViewCompiler.php 1 patch
Braces   +3 added lines, -6 removed lines patch added patch discarded remove patch
@@ -29,8 +29,7 @@  discard block
 block discarded – undo
29 29
         if (File::exists(base_path('scaffolder-config/cache/view_edit_' . $hash . self::CACHE_EXT)))
30 30
         {
31 31
             return $this->store($modelName, $scaffolderConfig, '', new FileToCompile(true, $hash));
32
-        }
33
-        else
32
+        } else
34 33
         {
35 34
             $this->stub = $stub;
36 35
 
@@ -61,8 +60,7 @@  discard block
 block discarded – undo
61 60
         if ($fileToCompile->cached)
62 61
         {
63 62
             File::copy(base_path('scaffolder-config/cache/view_edit_' . $fileToCompile->hash . self::CACHE_EXT), $path);
64
-        }
65
-        else
63
+        } else
66 64
         {
67 65
             File::put(base_path('scaffolder-config/cache/view_edit_' . $fileToCompile->hash . self::CACHE_EXT), $compiled);
68 66
             File::copy(base_path('scaffolder-config/cache/view_edit_' . $fileToCompile->hash . self::CACHE_EXT), $path);
@@ -89,8 +87,7 @@  discard block
 block discarded – undo
89 87
             {
90 88
                 $fields .= sprintf(self::getInputFor($field) . PHP_EOL, $field->name);
91 89
                 $firstIteration = false;
92
-            }
93
-            else
90
+            } else
94 91
             {
95 92
                 $fields .= sprintf("\t" . self::getInputFor($field) . PHP_EOL, $field->name);
96 93
             }
Please login to merge, or discard this patch.
src/Scaffolder/Compilers/Support/InputTypeResolverTrait.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -16,8 +16,7 @@
 block discarded – undo
16 16
         if ($fieldData->type->ui == 'text')
17 17
         {
18 18
             return '{!! Form::text(\'%s\', (isset($model)) ? $model->' . $fieldData->name . ' : null) !!}';
19
-        }
20
-        elseif ($fieldData->type->ui == 'textarea')
19
+        } elseif ($fieldData->type->ui == 'textarea')
21 20
         {
22 21
             return '{!! Form::textarea(\'%s\', (isset($model)) ? $model->' . $fieldData->name . ' : null) !!}';
23 22
         }
Please login to merge, or discard this patch.
src/Scaffolder/Compilers/Support/PathParser.php 1 patch
Braces   +7 added lines, -14 removed lines patch added patch discarded remove patch
@@ -18,33 +18,26 @@
 block discarded – undo
18 18
             if (head($path) == 'app')
19 19
             {
20 20
                 $path = app_path(last($path));
21
-            }
22
-            elseif (head($path) == 'base')
21
+            } elseif (head($path) == 'base')
23 22
             {
24 23
                 $path = base_path(last($path));
25
-            }
26
-            elseif (head($path) == 'config')
24
+            } elseif (head($path) == 'config')
27 25
             {
28 26
                 $path = config_path(last($path));
29
-            }
30
-            elseif (head($path) == 'database')
27
+            } elseif (head($path) == 'database')
31 28
             {
32 29
                 $path = database_path(last($path));
33
-            }
34
-            elseif (head($path) == 'public')
30
+            } elseif (head($path) == 'public')
35 31
             {
36 32
                 $path = public_path(last($path));
37
-            }
38
-            elseif (head($path) == 'storage')
33
+            } elseif (head($path) == 'storage')
39 34
             {
40 35
                 $path = storage_path(last($path));
41
-            }
42
-            else
36
+            } else
43 37
             {
44 38
                 $path = head($path);
45 39
             }
46
-        }
47
-        else
40
+        } else
48 41
         {
49 42
             $path = head($path);
50 43
         }
Please login to merge, or discard this patch.
routes/generator.php 1 patch
Braces   +10 added lines, -4 removed lines patch added patch discarded remove patch
@@ -27,8 +27,11 @@  discard block
 block discarded – undo
27 27
 
28 28
     array_walk_recursive($models, function (&$item)
29 29
     {
30
-        if ($item == 'true') $item = true;
31
-        elseif ($item == 'false') $item = false;
30
+        if ($item == 'true') {
31
+            $item = true;
32
+        } elseif ($item == 'false') {
33
+            $item = false;
34
+        }
32 35
     });
33 36
 
34 37
     // Generate app.json
@@ -51,8 +54,11 @@  discard block
 block discarded – undo
51 54
 
52 55
     array_walk_recursive($models, function (&$item)
53 56
     {
54
-        if ($item == 'true') $item = true;
55
-        elseif ($item == 'false') $item = false;
57
+        if ($item == 'true') {
58
+            $item = true;
59
+        } elseif ($item == 'false') {
60
+            $item = false;
61
+        }
56 62
     });
57 63
 
58 64
     // Generate app.json
Please login to merge, or discard this patch.
src/Scaffolder/Compilers/Core/ControllerCompiler.php 1 patch
Braces   +3 added lines, -6 removed lines patch added patch discarded remove patch
@@ -29,8 +29,7 @@  discard block
 block discarded – undo
29 29
         if (File::exists(base_path('scaffolder-config/cache/view_edit_' . $hash . self::CACHE_EXT)))
30 30
         {
31 31
             return $this->store($modelName, $scaffolderConfig, '', new FileToCompile(true, $hash));
32
-        }
33
-        else
32
+        } else
34 33
         {
35 34
             $this->stub = $stub;
36 35
 
@@ -61,8 +60,7 @@  discard block
 block discarded – undo
61 60
         if ($fileToCompile->cached)
62 61
         {
63 62
             File::copy(base_path('scaffolder-config/cache/view_edit_' . $fileToCompile->hash . self::CACHE_EXT), $path);
64
-        }
65
-        else
63
+        } else
66 64
         {
67 65
             File::put(base_path('scaffolder-config/cache/view_edit_' . $fileToCompile->hash . self::CACHE_EXT), $compiled);
68 66
             File::copy(base_path('scaffolder-config/cache/view_edit_' . $fileToCompile->hash . self::CACHE_EXT), $path);
@@ -89,8 +87,7 @@  discard block
 block discarded – undo
89 87
             {
90 88
                 $fields .= sprintf(self::getInputFor($field) . PHP_EOL, $field->name);
91 89
                 $firstIteration = false;
92
-            }
93
-            else
90
+            } else
94 91
             {
95 92
                 $fields .= sprintf("\t" . self::getInputFor($field) . PHP_EOL, $field->name);
96 93
             }
Please login to merge, or discard this patch.
src/Scaffolder/Compilers/Core/ModelCompiler.php 1 patch
Braces   +3 added lines, -6 removed lines patch added patch discarded remove patch
@@ -29,8 +29,7 @@  discard block
 block discarded – undo
29 29
         if (File::exists(base_path('scaffolder-config/cache/view_edit_' . $hash . self::CACHE_EXT)))
30 30
         {
31 31
             return $this->store($modelName, $scaffolderConfig, '', new FileToCompile(true, $hash));
32
-        }
33
-        else
32
+        } else
34 33
         {
35 34
             $this->stub = $stub;
36 35
 
@@ -61,8 +60,7 @@  discard block
 block discarded – undo
61 60
         if ($fileToCompile->cached)
62 61
         {
63 62
             File::copy(base_path('scaffolder-config/cache/view_edit_' . $fileToCompile->hash . self::CACHE_EXT), $path);
64
-        }
65
-        else
63
+        } else
66 64
         {
67 65
             File::put(base_path('scaffolder-config/cache/view_edit_' . $fileToCompile->hash . self::CACHE_EXT), $compiled);
68 66
             File::copy(base_path('scaffolder-config/cache/view_edit_' . $fileToCompile->hash . self::CACHE_EXT), $path);
@@ -89,8 +87,7 @@  discard block
 block discarded – undo
89 87
             {
90 88
                 $fields .= sprintf(self::getInputFor($field) . PHP_EOL, $field->name);
91 89
                 $firstIteration = false;
92
-            }
93
-            else
90
+            } else
94 91
             {
95 92
                 $fields .= sprintf("\t" . self::getInputFor($field) . PHP_EOL, $field->name);
96 93
             }
Please login to merge, or discard this patch.
src/Scaffolder/Compilers/View/CreateViewCompiler.php 1 patch
Braces   +3 added lines, -6 removed lines patch added patch discarded remove patch
@@ -29,8 +29,7 @@  discard block
 block discarded – undo
29 29
         if (File::exists(base_path('scaffolder-config/cache/view_edit_' . $hash . self::CACHE_EXT)))
30 30
         {
31 31
             return $this->store($modelName, $scaffolderConfig, '', new FileToCompile(true, $hash));
32
-        }
33
-        else
32
+        } else
34 33
         {
35 34
             $this->stub = $stub;
36 35
 
@@ -61,8 +60,7 @@  discard block
 block discarded – undo
61 60
         if ($fileToCompile->cached)
62 61
         {
63 62
             File::copy(base_path('scaffolder-config/cache/view_edit_' . $fileToCompile->hash . self::CACHE_EXT), $path);
64
-        }
65
-        else
63
+        } else
66 64
         {
67 65
             File::put(base_path('scaffolder-config/cache/view_edit_' . $fileToCompile->hash . self::CACHE_EXT), $compiled);
68 66
             File::copy(base_path('scaffolder-config/cache/view_edit_' . $fileToCompile->hash . self::CACHE_EXT), $path);
@@ -89,8 +87,7 @@  discard block
 block discarded – undo
89 87
             {
90 88
                 $fields .= sprintf(self::getInputFor($field) . PHP_EOL, $field->name);
91 89
                 $firstIteration = false;
92
-            }
93
-            else
90
+            } else
94 91
             {
95 92
                 $fields .= sprintf("\t" . self::getInputFor($field) . PHP_EOL, $field->name);
96 93
             }
Please login to merge, or discard this patch.