Passed
Push — master ( b93774...524bd5 )
by Bruno
03:46
created
util/CreateDirective.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
         'implements' => implode(
23 23
             ', ',
24 24
             array_map(
25
-                function ($i) {
25
+                function($i) {
26 26
                     return Str::studly($i) . 'DirectiveInterface';
27 27
                 },
28 28
                 $processors
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
 }
61 61
 
62 62
 // Script example.php
63
-$longopts  = array(
63
+$longopts = array(
64 64
     "name:",
65 65
     "processors:"
66 66
 );
Please login to merge, or discard this patch.
Modelarium/Laravel/Directives/EagerLoadDirective.php 1 patch
Switch Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -60,18 +60,18 @@
 block discarded – undo
60 60
             $targetSingle = mb_strtolower($generator->getInflector()->singularize($datatype->getTarget()));
61 61
             $targetPlural = $datatype->getTargetTable();
62 62
             switch ($datatype->getRelationship()) {
63
-                case RelationshipFactory::RELATIONSHIP_ONE_TO_ONE:
64
-                case RelationshipFactory::MORPH_ONE_TO_ONE:
65
-                    $target = $targetSingle;
66
-                    break;
67
-                case RelationshipFactory::RELATIONSHIP_ONE_TO_MANY:
68
-                case RelationshipFactory::MORPH_ONE_TO_MANY:
69
-                    $target = $datatype->getIsInverse() ? $targetSingle : $targetPlural;
70
-                    break;
71
-                case RelationshipFactory::RELATIONSHIP_MANY_TO_MANY:
72
-                case RelationshipFactory::MORPH_MANY_TO_MANY:
73
-                    $target = $targetPlural;
74
-                    break;
63
+            case RelationshipFactory::RELATIONSHIP_ONE_TO_ONE:
64
+            case RelationshipFactory::MORPH_ONE_TO_ONE:
65
+                $target = $targetSingle;
66
+                break;
67
+            case RelationshipFactory::RELATIONSHIP_ONE_TO_MANY:
68
+            case RelationshipFactory::MORPH_ONE_TO_MANY:
69
+                $target = $datatype->getIsInverse() ? $targetSingle : $targetPlural;
70
+                break;
71
+            case RelationshipFactory::RELATIONSHIP_MANY_TO_MANY:
72
+            case RelationshipFactory::MORPH_MANY_TO_MANY:
73
+                $target = $targetPlural;
74
+                break;
75 75
             }
76 76
         }
77 77
         $generator->with[] = $target;
Please login to merge, or discard this patch.
Modelarium/Laravel/Targets/ModelGenerator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -233,7 +233,7 @@
 block discarded – undo
233 233
             $this->fModel->appendExtradata(
234 234
                 new Extradata(
235 235
                     'hasCan',
236
-                    [ new ExtradataParameter('value', true) ]
236
+                    [new ExtradataParameter('value', true)]
237 237
                 )
238 238
             );
239 239
             return;
Please login to merge, or discard this patch.
Modelarium/Laravel/Directives/MigrationFulltextIndexDirective.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
             throw new Exception("You must provide at least one field to a full text index");
24 24
         }
25 25
         $generator->postCreateCode[] = "DB::statement('ALTER TABLE " .
26
-            $generator->getTableName()  .
26
+            $generator->getTableName() .
27 27
             " ADD FULLTEXT fulltext_index (`" .
28 28
             implode('`, `', $indexFields) .
29 29
             "`)');";
Please login to merge, or discard this patch.
Modelarium/Laravel/Directives/MigrationIndexDirective.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
         if (!count($indexFields)) {
20 20
             throw new Exception("You must provide at least one field to an index");
21 21
         }
22
-        $generator->createCode[] = '$table->index(["' . implode('", "', $indexFields) .'"]);';
22
+        $generator->createCode[] = '$table->index(["' . implode('", "', $indexFields) . '"]);';
23 23
     }
24 24
 
25 25
     public static function processMigrationFieldDirective(
Please login to merge, or discard this patch.
Modelarium/Laravel/Directives/MigrationUniqueIndexDirective.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@
 block discarded – undo
56 56
         if (!count($indexFields)) {
57 57
             throw new Exception("You must provide at least one field to an index on a model");
58 58
         }
59
-        $generator->createCode[] = '$table->unique(["' . implode('", "', $indexFields) .'"]);';
59
+        $generator->createCode[] = '$table->unique(["' . implode('", "', $indexFields) . '"]);';
60 60
     }
61 61
 
62 62
     public static function processMigrationFieldDirective(
Please login to merge, or discard this patch.
Modelarium/Util.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@
 block discarded – undo
47 47
      */
48 48
     public static function scalars(array $datatypes, string $ns): array
49 49
     {
50
-        $graphql = [ '# File automatically generated by Modelarium' ];
50
+        $graphql = ['# File automatically generated by Modelarium'];
51 51
 
52 52
         foreach ($datatypes as $name) {
53 53
             $typeName = Str::studly($name);
Please login to merge, or discard this patch.
Modelarium/Frontend/FrontendGenerator.php 1 patch
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -141,17 +141,17 @@  discard block
 block discarded – undo
141 141
     public function buildTemplateParameters(): void
142 142
     {
143 143
         $this->titleFields = $this->fModel->filterField(
144
-            function (Field $field) {
144
+            function(Field $field) {
145 145
                 return $field->getRenderable('title', false);
146 146
             }
147 147
         );
148 148
         $this->cardFields = $this->fModel->filterField(
149
-            function (Field $field) {
149
+            function(Field $field) {
150 150
                 return $field->getRenderable('card', false);
151 151
             }
152 152
         );
153 153
         $this->tableFields = $this->fModel->filterField(
154
-            function (Field $field) {
154
+            function(Field $field) {
155 155
                 return $field->getRenderable('table', false);
156 156
             }
157 157
         );
@@ -207,7 +207,7 @@  discard block
 block discarded – undo
207 207
             'Table',
208 208
             [
209 209
                 Table::ROW_NAMES => array_map(
210
-                    function (Field $field) {
210
+                    function(Field $field) {
211 211
                         return $field->getRenderable(Renderable::LABEL, $field->getName());
212 212
                     },
213 213
                     $this->tableFields
@@ -225,7 +225,7 @@  discard block
 block discarded – undo
225 225
             true
226 226
         );
227 227
         $titleFields = $this->fModel->filterField(
228
-            function (Field $field) {
228
+            function(Field $field) {
229 229
                 return $field->getRenderable('title', false);
230 230
             }
231 231
         );
@@ -251,7 +251,7 @@  discard block
 block discarded – undo
251 251
             'keyAttribute' => $this->keyAttribute,
252 252
             'spinner' => $spinner,
253 253
             'tablelist' => $table->getRenderHTML(),
254
-            'tableItemFields' => array_keys(array_map(function (Field $f) {
254
+            'tableItemFields' => array_keys(array_map(function(Field $f) {
255 255
                 return $f->getName();
256 256
             }, $this->tableFields)),
257 257
             'typeTitle' => $this->fModel->getRenderable('name', $this->studlyName),
@@ -327,13 +327,13 @@  discard block
 block discarded – undo
327 327
                     $filters[] = [
328 328
                         'name' => $arg->name,
329 329
                         'type' => $typename,
330
-                        'graphqlType' =>  $arg->name  . ': ' .
330
+                        'graphqlType' =>  $arg->name . ': ' .
331 331
                             ($isArray ? '[' : '') .
332 332
                             $typename .
333 333
                             ($isInternalRequired ? '!' : '') .
334 334
                             ($isArray ? ']' : '') .
335 335
                             ($isRequired ? '!' : ''),
336
-                        'required' => (bool)$isRequired,
336
+                        'required' => (bool) $isRequired,
337 337
                         'requiredJSBoolean' => $isRequired ? 'true' : 'false'
338 338
                     ];
339 339
                 }
@@ -349,13 +349,13 @@  discard block
 block discarded – undo
349 349
          * card
350 350
          */
351 351
         $cardFieldNames = array_map(
352
-            function (Field $field) {
352
+            function(Field $field) {
353 353
                 return $field->getName();
354 354
             },
355 355
             $this->cardFields
356 356
         );
357 357
         $graphqlQuery = $this->fModel->mapFields(
358
-            function (Field $f) use ($cardFieldNames) {
358
+            function(Field $f) use ($cardFieldNames) {
359 359
                 if (in_array($f->getName(), $cardFieldNames)) {
360 360
                     // TODO: filter subfields in relationships
361 361
                     return $f->toGraphqlQuery();
@@ -371,7 +371,7 @@  discard block
 block discarded – undo
371 371
             $filtersQuery = ', ' . join(
372 372
                 ', ',
373 373
                 array_map(
374
-                    function ($item) {
374
+                    function($item) {
375 375
                         // TODO: still buggy, misses the internal ! in [Xyz!]!
376 376
                         return '$' . $item['graphqlType'];
377 377
                     },
@@ -381,7 +381,7 @@  discard block
 block discarded – undo
381 381
             $filtersParams = ', ' . join(
382 382
                 ', ',
383 383
                 array_map(
384
-                    function ($item) {
384
+                    function($item) {
385 385
                         return $item['name'] . ': $' . $item['name'];
386 386
                     },
387 387
                     $filters
@@ -420,14 +420,14 @@  discard block
 block discarded – undo
420 420
          * table
421 421
          */
422 422
         $tableFieldNames = array_map(
423
-            function (Field $field) {
423
+            function(Field $field) {
424 424
                 return $field->getName();
425 425
             },
426 426
             $this->tableFields
427 427
         );
428 428
 
429 429
         $graphqlQuery = $this->fModel->mapFields(
430
-            function (Field $f) use ($tableFieldNames) {
430
+            function(Field $f) use ($tableFieldNames) {
431 431
                 if (in_array($f->getName(), $tableFieldNames)) {
432 432
                     // TODO: filter subfields in relationships
433 433
                     return $f->toGraphqlQuery();
@@ -467,7 +467,7 @@  discard block
 block discarded – undo
467 467
          * item
468 468
          */
469 469
         $graphqlQuery = $this->fModel->mapFields(
470
-            function (Field $f) {
470
+            function(Field $f) {
471 471
                 return \Modelarium\Frontend\Util::fieldShow($f) ? $f->toGraphqlQuery() : null;
472 472
             }
473 473
         );
Please login to merge, or discard this patch.
Modelarium/Frontend/FrontendVueGenerator.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
                 Button::TYPE => ($hasVueRouter ? 'router-link' : 'a'),
122 122
                 Button::ATTRIBUTES => [
123 123
                     $targetAttribute => "/{$routeBase}/edit",
124
-                ] + ($hasCan ? [ "v-if" => 'can.create' ]: []),
124
+                ] + ($hasCan ? ["v-if" => 'can.create'] : []),
125 125
             ]
126 126
         )->setContent(
127 127
             '<i class="fa fa-plus"></i> Add new',
@@ -135,7 +135,7 @@  discard block
 block discarded – undo
135 135
                 Button::TYPE => ($hasVueRouter ? 'router-link' : 'a'),
136 136
                 Button::ATTRIBUTES => [
137 137
                     $targetAttribute => "'/{$routeBase}/' + model.{$keyAttribute} + '/edit'",
138
-                ] + ($hasCan ? [ "v-if" => 'can.edit' ]: []),
138
+                ] + ($hasCan ? ["v-if" => 'can.edit'] : []),
139 139
             ]
140 140
         )->setContent(
141 141
             '<i class="fa fa-pencil"></i> Edit',
@@ -151,7 +151,7 @@  discard block
 block discarded – undo
151 151
                 Button::ATTRIBUTES => [
152 152
                     'href' => '#',
153 153
                     '@click.prevent' => 'remove',
154
-                ] + ($hasCan ? [ "v-if" => 'can.delete' ]: []),
154
+                ] + ($hasCan ? ["v-if" => 'can.delete'] : []),
155 155
             ]
156 156
         )->setContent(
157 157
             '<i class="fa fa-trash"></i> Delete',
@@ -171,7 +171,7 @@  discard block
 block discarded – undo
171 171
         $this->generator->templateParameters['options'] = $this->options->getSection('vue');
172 172
 
173 173
         $this->generator->templateParameters['tableItemFields'] =
174
-            array_values(array_map(function (Field $f) {
174
+            array_values(array_map(function(Field $f) {
175 175
                 if ($f->getDatatype()->getBasetype() === 'relationship') {
176 176
                     $name = $f->getName();
177 177
                     return "<{$name}-link v-bind=\"{$name}\"></{$name}-link>";
@@ -256,7 +256,7 @@  discard block
 block discarded – undo
256 256
                 'required' => true
257 257
             ]
258 258
         ];
259
-        $cardFieldNames = array_map(function (Field $f) {
259
+        $cardFieldNames = array_map(function(Field $f) {
260 260
             return $f->getName();
261 261
         }, $this->generator->getCardFields());
262 262
         $vueCode->setExtraProps($extraprops);
@@ -289,7 +289,7 @@  discard block
 block discarded – undo
289 289
             ]
290 290
         ];
291 291
         $vueCode->setExtraProps($extraprops);
292
-        $cardFieldNames = array_map(function (Field $f) {
292
+        $cardFieldNames = array_map(function(Field $f) {
293 293
             return $f->getName();
294 294
         }, $this->generator->getCardFields());
295 295
         foreach ($this->generator->getCardFields() as $f) {
@@ -314,7 +314,7 @@  discard block
 block discarded – undo
314 314
     public function vueTableItem(FrameworkVue $vue): void
315 315
     {
316 316
         $vueCode = $vue->getVueCode();
317
-        $tableFieldNames = array_map(function (Field $f) {
317
+        $tableFieldNames = array_map(function(Field $f) {
318 318
             return $f->getName();
319 319
         }, $this->generator->getTableFields());
320 320
         $extraprops = [
@@ -346,7 +346,7 @@  discard block
 block discarded – undo
346 346
             $vue,
347 347
             'Form',
348 348
             'editable',
349
-            function (Field $f) {
349
+            function(Field $f) {
350 350
                 if (!$f->getExtradata('modelFillable')) {
351 351
                     return false;
352 352
                 }
@@ -371,7 +371,7 @@  discard block
 block discarded – undo
371 371
 
372 372
         if ($mode == 'editable') {
373 373
             $vue->setEditableTemplate(
374
-                function (FrameworkVue $vue, array $data, Model $m) use ($stub) {
374
+                function(FrameworkVue $vue, array $data, Model $m) use ($stub) {
375 375
                     return $this->generator->templateCallback($stub, $vue, $data, $m);
376 376
                 }
377 377
             );
@@ -385,7 +385,7 @@  discard block
 block discarded – undo
385 385
             );
386 386
         } else {
387 387
             $vue->setViewableTemplate(
388
-                function (FrameworkVue $vue, array $data, Model $m) use ($stub) {
388
+                function(FrameworkVue $vue, array $data, Model $m) use ($stub) {
389 389
                     return $this->generator->templateCallback($stub, $vue, $data, $m);
390 390
                 }
391 391
             );
@@ -417,14 +417,14 @@  discard block
 block discarded – undo
417 417
         ];
418 418
 
419 419
         $import = array_map(
420
-            function ($i) use ($name) {
420
+            function($i) use ($name) {
421 421
                 return "import {$name}$i from './{$name}$i.vue';";
422 422
             },
423 423
             $items
424 424
         );
425 425
 
426 426
         $export = array_map(
427
-            function ($i) use ($name) {
427
+            function($i) use ($name) {
428 428
                 return "    {$name}$i,";
429 429
             },
430 430
             $items
Please login to merge, or discard this patch.