Passed
Push — master ( 4b152c...2ff9b2 )
by Iman
03:51
created
src/controllers/ApiController/ExecuteApi.php 1 patch
Spacing   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
             }
69 69
             ApiResponder::send($result, $posts, $this->ctrl);
70 70
         } elseif (in_array($actionType, ['save_add', 'save_edit'])) {
71
-            $rowAssign = array_filter($input_validator, function ($column) use ($table) {
71
+            $rowAssign = array_filter($input_validator, function($column) use ($table) {
72 72
                 return Schema::hasColumn($table, $column);
73 73
             }, ARRAY_FILTER_USE_KEY);
74 74
 
@@ -138,7 +138,7 @@  discard block
 block discarded – undo
138 138
      */
139 139
     private function filterRows($data, $parameters, $posts, $table, $typeExcept)
140 140
     {
141
-        $data->where(function ($w) use ($parameters, $posts, $table, $typeExcept) {
141
+        $data->where(function($w) use ($parameters, $posts, $table, $typeExcept) {
142 142
             foreach ($parameters as $param) {
143 143
                 $name = $param['name'];
144 144
                 $type = $param['type'];
@@ -268,7 +268,7 @@  discard block
 block discarded – undo
268 268
                 $rows->$k = asset($v);
269 269
             }
270 270
 
271
-            if (! in_array($k, $responsesFields)) {
271
+            if (!in_array($k, $responsesFields)) {
272 272
                 unset($rows->$k);
273 273
             }
274 274
         }
@@ -322,7 +322,7 @@  discard block
 block discarded – undo
322 322
     {
323 323
         $result = ApiResponder::makeResult(1, 'success');
324 324
 
325
-        return array_merge($result, (array)$rows);
325
+        return array_merge($result, (array) $rows);
326 326
     }
327 327
 
328 328
     /**
@@ -332,7 +332,7 @@  discard block
 block discarded – undo
332 332
      */
333 333
     private function applyLike($data, $search_in, $value)
334 334
     {
335
-        $data->where(function ($w) use ($search_in, $value) {
335
+        $data->where(function($w) use ($search_in, $value) {
336 336
             foreach ($search_in as $k => $field) {
337 337
                 $method = 'orWhere';
338 338
                 if ($k == 0) {
@@ -353,7 +353,7 @@  discard block
 block discarded – undo
353 353
      */
354 354
     private function joinRelatedTables($table, $responsesFields, $name, $data, $nameTmp)
355 355
     {
356
-        if (! DbInspector::isForeignKey($name)) {
356
+        if (!DbInspector::isForeignKey($name)) {
357 357
             return $nameTmp;
358 358
         }
359 359
         $joinTable = DbInspector::getTableForeignKey($name);
@@ -390,7 +390,7 @@  discard block
 block discarded – undo
390 390
     {
391 391
         $this->ctrl->hookValidate();
392 392
 
393
-        if (! $this->ctrl->validate) {
393
+        if (!$this->ctrl->validate) {
394 394
             return true;
395 395
         }  // hook have to return true
396 396
 
@@ -422,7 +422,7 @@  discard block
 block discarded – undo
422 422
     private function doValidation($inputValidator, $dataValidation, $posts)
423 423
     {
424 424
         $validator = Validator::make($inputValidator, $dataValidation);
425
-        if (! $validator->fails()) {
425
+        if (!$validator->fails()) {
426 426
             return true;
427 427
         }
428 428
         $message = $validator->errors()->all();
@@ -443,7 +443,7 @@  discard block
 block discarded – undo
443 443
     {
444 444
         $row = $data->first();
445 445
 
446
-        if (! $row) {
446
+        if (!$row) {
447 447
             return ApiResponder::makeResult(0, 'There is no data found !');
448 448
         }
449 449
 
@@ -465,7 +465,7 @@  discard block
 block discarded – undo
465 465
                 $this->passwordError($posts);
466 466
             }
467 467
 
468
-            if (! $required && $used && $value) {
468
+            if (!$required && $used && $value) {
469 469
                 $this->passwordError($posts);
470 470
             }
471 471
         }
@@ -481,11 +481,11 @@  discard block
 block discarded – undo
481 481
      */
482 482
     private function filterRedundantResp($responses)
483 483
     {
484
-        $responses = array_filter($responses, function ($resp) {
485
-            return ! ($resp['name'] == 'ref_id' || $resp['type'] == 'custom');
484
+        $responses = array_filter($responses, function($resp) {
485
+            return !($resp['name'] == 'ref_id' || $resp['type'] == 'custom');
486 486
         });
487 487
 
488
-        $responses = array_filter($responses, function ($resp) {
488
+        $responses = array_filter($responses, function($resp) {
489 489
             return (intval($resp['used']) != 0 || DbInspector::isForeignKey($resp['name']));
490 490
         });
491 491
 
@@ -500,15 +500,15 @@  discard block
 block discarded – undo
500 500
     private function validateParams($parameters, $table)
501 501
     {
502 502
         $posts = request()->all();
503
-        if (! $parameters) {
503
+        if (!$parameters) {
504 504
             return ['', ''];
505 505
         }
506 506
         $typeExcept = ['password', 'ref', 'base64_file', 'custom', 'search'];
507 507
         $inputValidator = [];
508 508
         $dataValidation = [];
509 509
 
510
-        $parameters = array_filter($parameters, function ($param){
511
-            return !(is_string($param['config'])&& !starts_with($param['config'], '*'));
510
+        $parameters = array_filter($parameters, function($param) {
511
+            return !(is_string($param['config']) && !starts_with($param['config'], '*'));
512 512
         });
513 513
 
514 514
         foreach ($parameters as $param) {
Please login to merge, or discard this patch.