Passed
Push — master ( dbc8ed...a2b831 )
by Bruno
07:33
created
Modelarium/Frontend/FrontendGenerator.php 1 patch
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -86,10 +86,10 @@  discard block
 block discarded – undo
86 86
         // $blade = FrameworkComposer::getByName('Blade');
87 87
 
88 88
         if ($vue !== null) {
89
-            $cardFieldNames = array_map(function (Field $f) {
89
+            $cardFieldNames = array_map(function(Field $f) {
90 90
                 return $f->getName();
91 91
             }, $this->cardFields);
92
-            $tableFieldNames = array_map(function (Field $f) {
92
+            $tableFieldNames = array_map(function(Field $f) {
93 93
                 return $f->getName();
94 94
             }, $this->tableFields);
95 95
 
@@ -121,12 +121,12 @@  discard block
 block discarded – undo
121 121
     protected function buildTemplateParameters(): void
122 122
     {
123 123
         $this->cardFields = $this->model->filterField(
124
-            function (Field $field) {
124
+            function(Field $field) {
125 125
                 return $field->getRenderable('card', false);
126 126
             }
127 127
         );
128 128
         $this->tableFields = $this->model->filterField(
129
-            function (Field $field) {
129
+            function(Field $field) {
130 130
                 return $field->getRenderable('table', false);
131 131
             }
132 132
         );
@@ -138,7 +138,7 @@  discard block
 block discarded – undo
138 138
             'Button',
139 139
             [
140 140
                 Button::TYPE => 'a',
141
-                Button::ATTRIBUTES => ['href' => "/{$this->lowerName}/edit" ],
141
+                Button::ATTRIBUTES => ['href' => "/{$this->lowerName}/edit"],
142 142
             ]
143 143
         )->setContent(
144 144
             '<i class="fa fa-plus"></i> Add new',
@@ -181,7 +181,7 @@  discard block
 block discarded – undo
181 181
             'Table',
182 182
             [
183 183
                 Table::ROW_NAMES => array_map(
184
-                    function (Field $field) {
184
+                    function(Field $field) {
185 185
                         return $field->getRenderable(Renderable::LABEL, $field->getName());
186 186
                     },
187 187
                     $this->tableFields
@@ -198,7 +198,7 @@  discard block
 block discarded – undo
198 198
             true
199 199
         );
200 200
         $titleFields = $this->model->filterField(
201
-            function (Field $field) {
201
+            function(Field $field) {
202 202
                 return $field->getRenderable('title', false);
203 203
             }
204 204
         );
@@ -216,7 +216,7 @@  discard block
 block discarded – undo
216 216
             'buttonDelete' => $buttonDelete,
217 217
             // TODO 'hasCan' => $this->model
218 218
             'tablelist' => $table->getRenderHTML(),
219
-            'tableItemFields' => array_keys(array_map(function (Field $f) {
219
+            'tableItemFields' => array_keys(array_map(function(Field $f) {
220 220
                 return $f->getName();
221 221
             }, $this->tableFields)),
222 222
             'titleField' => array_key_first($titleFields) ?: 'id'
@@ -244,7 +244,7 @@  discard block
 block discarded – undo
244 244
 
245 245
         if ($mode == 'editable') {
246 246
             $vue->setEditableTemplate(
247
-                function (FrameworkVue $vue, array $data, Model $m) use ($stub) {
247
+                function(FrameworkVue $vue, array $data, Model $m) use ($stub) {
248 248
                     return $this->templateCallback($stub, $vue, $data, $m);
249 249
                 }
250 250
             );
@@ -258,7 +258,7 @@  discard block
 block discarded – undo
258 258
             );
259 259
         } else {
260 260
             $vue->setViewableTemplate(
261
-                function (FrameworkVue $vue, array $data, Model $m) use ($stub) {
261
+                function(FrameworkVue $vue, array $data, Model $m) use ($stub) {
262 262
                     return $this->templateCallback($stub, $vue, $data, $m);
263 263
                 }
264 264
             );
@@ -285,7 +285,7 @@  discard block
 block discarded – undo
285 285
          * card
286 286
          */
287 287
         $cardFieldNames = array_map(
288
-            function (Field $field) {
288
+            function(Field $field) {
289 289
                 return $field->getName();
290 290
             },
291 291
             $this->cardFields
@@ -321,7 +321,7 @@  discard block
 block discarded – undo
321 321
          * table
322 322
          */
323 323
         $tableFieldNames = array_map(
324
-            function (Field $field) {
324
+            function(Field $field) {
325 325
                 return $field->getName();
326 326
             },
327 327
             $this->tableFields
@@ -419,14 +419,14 @@  discard block
 block discarded – undo
419 419
         ];
420 420
 
421 421
         $import = array_map(
422
-            function ($i) use ($name) {
422
+            function($i) use ($name) {
423 423
                 return "import {$name}$i from './{$name}$i.vue';";
424 424
             },
425 425
             $items
426 426
         );
427 427
 
428 428
         $export = array_map(
429
-            function ($i) use ($name) {
429
+            function($i) use ($name) {
430 430
                 return "    {$name}$i,\n";
431 431
             },
432 432
             $items
Please login to merge, or discard this patch.