Passed
Push — master ( 4a70a7...ec1703 )
by Iman
04:09
created
src/controllers/ApiController/ExecuteApi.php 2 patches
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
                 $result = $this->handleDeleteAction($table, $data);
88 88
             }
89 89
         }elseif (in_array($actionType, ['save_add', 'save_edit'])) {
90
-            $rowAssign = array_filter($input_validator, function ($column) use ($table) {
90
+            $rowAssign = array_filter($input_validator, function($column) use ($table) {
91 91
                 return Schema::hasColumn($table, $column);
92 92
             }, ARRAY_FILTER_USE_KEY);
93 93
 
@@ -189,7 +189,7 @@  discard block
 block discarded – undo
189 189
      */
190 190
     private function filterRows($data, $parameters, $posts, $table, $typeExcept)
191 191
     {
192
-        $data->where(function ($w) use ($parameters, $posts, $table, $typeExcept) {
192
+        $data->where(function($w) use ($parameters, $posts, $table, $typeExcept) {
193 193
             foreach ($parameters as $param) {
194 194
                 $name = $param['name'];
195 195
                 $type = $param['type'];
@@ -278,7 +278,7 @@  discard block
 block discarded – undo
278 278
                     $row->$k = asset($v);
279 279
                 }
280 280
 
281
-                if (! in_array($k, $responsesFields)) {
281
+                if (!in_array($k, $responsesFields)) {
282 282
                     unset($row[$k]);
283 283
                 }
284 284
             }
@@ -331,7 +331,7 @@  discard block
 block discarded – undo
331 331
                 $rows->$k = asset($v);
332 332
             }
333 333
 
334
-            if (! in_array($k, $responsesFields)) {
334
+            if (!in_array($k, $responsesFields)) {
335 335
                 unset($row[$k]);
336 336
             }
337 337
         }
@@ -397,7 +397,7 @@  discard block
 block discarded – undo
397 397
      */
398 398
     private function applyLike($data, $search_in, $value)
399 399
     {
400
-        $data->where(function ($w) use ($search_in, $value) {
400
+        $data->where(function($w) use ($search_in, $value) {
401 401
             foreach ($search_in as $k => $field) {
402 402
                 if ($k == 0) {
403 403
                     $w->where($field, "like", "%$value%");
@@ -418,7 +418,7 @@  discard block
 block discarded – undo
418 418
      */
419 419
     private function joinRelatedTables($table, $responsesFields, $name, $data, $nameTmp)
420 420
     {
421
-        if (! DbInspector::isForeignKey($name)) {
421
+        if (!DbInspector::isForeignKey($name)) {
422 422
             return $nameTmp;
423 423
         }
424 424
         $jointable = DbInspector::getTableForeignKey($name);
@@ -457,7 +457,7 @@  discard block
 block discarded – undo
457 457
         $posts = request()->all();
458 458
         $this->ctrl->hookValidate($posts);
459 459
 
460
-        if (! $this->ctrl->validate) {
460
+        if (!$this->ctrl->validate) {
461 461
             return true;
462 462
         }  // hook have to return true
463 463
 
@@ -492,7 +492,7 @@  discard block
 block discarded – undo
492 492
     private function doValidation($input_validator, $data_validation, $posts)
493 493
     {
494 494
         $validator = Validator::make($input_validator, $data_validation);
495
-        if (! $validator->fails()) {
495
+        if (!$validator->fails()) {
496 496
             return true;
497 497
         }
498 498
         $message = $validator->errors()->all();
@@ -532,11 +532,11 @@  discard block
 block discarded – undo
532 532
                 $value = $param['config'];
533 533
             }
534 534
 
535
-            if ($required && $type == 'password' && ! Hash::check($value, $row->{$name})) {
535
+            if ($required && $type == 'password' && !Hash::check($value, $row->{$name})) {
536 536
                 $this->passwordError($posts);
537 537
             }
538 538
 
539
-            if (! $required && $used && $value && ! Hash::check($value, $row->{$name})) {
539
+            if (!$required && $used && $value && !Hash::check($value, $row->{$name})) {
540 540
                 $this->passwordError($posts);
541 541
             }
542 542
         }
@@ -552,11 +552,11 @@  discard block
 block discarded – undo
552 552
      */
553 553
     private function filterRedundantResp($responses)
554 554
     {
555
-        $responses = array_filter($responses, function ($resp) {
556
-            return ! ($resp['name'] == 'ref_id' || $resp['type'] == 'custom');
555
+        $responses = array_filter($responses, function($resp) {
556
+            return !($resp['name'] == 'ref_id' || $resp['type'] == 'custom');
557 557
         });
558 558
 
559
-        $responses = array_filter($responses, function ($resp) {
559
+        $responses = array_filter($responses, function($resp) {
560 560
             return (intval($resp['used']) != 0 || DbInspector::isForeignKey($resp['name']));
561 561
         });
562 562
 
Please login to merge, or discard this patch.
Braces   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -81,12 +81,12 @@
 block discarded – undo
81 81
             $result = [];
82 82
             if ($actionType == 'list') {
83 83
                 $result = $this->handleListAction($table, $orderby, $data, $responses_fields);
84
-            }elseif ($actionType == 'detail') {
84
+            } elseif ($actionType == 'detail') {
85 85
                 $result = $this->handleDetailsAction($data, $parameters, $posts, $responses_fields);
86
-            }elseif ($actionType == 'delete') {
86
+            } elseif ($actionType == 'delete') {
87 87
                 $result = $this->handleDeleteAction($table, $data);
88 88
             }
89
-        }elseif (in_array($actionType, ['save_add', 'save_edit'])) {
89
+        } elseif (in_array($actionType, ['save_add', 'save_edit'])) {
90 90
             $rowAssign = array_filter($input_validator, function ($column) use ($table) {
91 91
                 return Schema::hasColumn($table, $column);
92 92
             }, ARRAY_FILTER_USE_KEY);
Please login to merge, or discard this patch.