Passed
Push — master ( 87ee59...8ccb8d )
by Fran
02:44
created
src/controller/I18nController.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -42,8 +42,8 @@  discard block
 block discarded – undo
42 42
         //Generating the templates translations
43 43
         $translations = $this->tpl->regenerateTemplates();
44 44
 
45
-        $localePath = realpath(BASE_DIR . DIRECTORY_SEPARATOR . 'locale');
46
-        $localePath .= DIRECTORY_SEPARATOR . $locale . DIRECTORY_SEPARATOR . 'LC_MESSAGES' . DIRECTORY_SEPARATOR;
45
+        $localePath = realpath(BASE_DIR.DIRECTORY_SEPARATOR.'locale');
46
+        $localePath .= DIRECTORY_SEPARATOR.$locale.DIRECTORY_SEPARATOR.'LC_MESSAGES'.DIRECTORY_SEPARATOR;
47 47
 
48 48
         //xgettext localizations
49 49
         $translations = array_merge($translations, GeneratorService::findTranslations(SOURCE_DIR, $locale));
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
         $translations = array_merge($translations, GeneratorService::findTranslations(CACHE_DIR, $locale));
52 52
 
53 53
         $translations[] = "msgfmt {$localePath}translations.po -o {$localePath}translations.mo";
54
-        $translations[] = shell_exec('export PATH=\$PATH:/opt/local/bin:/bin:/sbin; msgfmt '. $localePath . 'translations.po -o ' . $localePath . 'translations.mo');
54
+        $translations[] = shell_exec('export PATH=\$PATH:/opt/local/bin:/bin:/sbin; msgfmt '.$localePath.'translations.po -o '.$localePath.'translations.mo');
55 55
         return $this->render('translations.html.twig', array(
56 56
             'translations' => $translations,
57 57
         ));
Please login to merge, or discard this patch.
src/base/types/Form.php 1 patch
Spacing   +24 added lines, -24 removed lines patch added patch discarded remove patch
@@ -69,8 +69,8 @@  discard block
 block discarded – undo
69 69
     public function add($name, array $value = array())
70 70
     {
71 71
         $this->fields[$name] = $value;
72
-        $this->fields[$name]['name'] = $this->getName() . '['.$name.']';
73
-        $this->fields[$name]['id'] = $this->getName() . '_' . $name;
72
+        $this->fields[$name]['name'] = $this->getName().'['.$name.']';
73
+        $this->fields[$name]['id'] = $this->getName().'_'.$name;
74 74
         $this->fields[$name]['placeholder'] = array_key_exists('placeholder', $value) ? $value['placeholder'] : $name;
75 75
         $this->fields[$name]['hasLabel'] = array_key_exists('hasLabel', $value) ? $value['hasLabel'] : true;
76 76
         return $this;
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
         }
134 134
         if ('' !== $hashOrig) {
135 135
             $this->crfs = sha1($hashOrig);
136
-            $this->add($this->getName() . '_token', array(
136
+            $this->add($this->getName().'_token', array(
137 137
                 'type' => 'hidden',
138 138
                 'value' => $this->crfs,
139 139
             ));
@@ -202,7 +202,7 @@  discard block
 block discarded – undo
202 202
     public function isValid()
203 203
     {
204 204
         $valid = true;
205
-        $tokenField = $this->getName() . '_token';
205
+        $tokenField = $this->getName().'_token';
206 206
         //Controlamos CSRF token
207 207
         if (!$this->existsFormToken($tokenField)) {
208 208
             $this->errors[$tokenField] = t('Formulario no válido');
@@ -276,7 +276,7 @@  discard block
 block discarded – undo
276 276
         $data = array();
277 277
         if (count($this->fields) > 0) {
278 278
             foreach ($this->fields as $key => $field) {
279
-                if (self::SEPARATOR !== $key && $key !== ($this->getName() . '_token')) {
279
+                if (self::SEPARATOR !== $key && $key !== ($this->getName().'_token')) {
280 280
                     $data[$key] = array_key_exists('value', $field) ? $field['value'] : null;
281 281
                 }
282 282
             }
@@ -390,8 +390,8 @@  discard block
 block discarded – undo
390 390
             $model = $this->getHydratedModel();
391 391
             $model->save();
392 392
             $save = true;
393
-            Logger::log(get_class($this->model) . ' guardado con id ' . $this->model->getPrimaryKey(), LOG_INFO);
394
-        } catch (\Exception $e) {
393
+            Logger::log(get_class($this->model).' guardado con id '.$this->model->getPrimaryKey(), LOG_INFO);
394
+        }catch (\Exception $e) {
395 395
             Logger::log($e->getMessage(), LOG_ERR);
396 396
             throw new FormException($e->getMessage(), $e->getCode(), $e);
397 397
         }
@@ -410,10 +410,10 @@  discard block
 block discarded – undo
410 410
         if (null === $value) {
411 411
             $isEmpty = true;
412 412
             // Empty Array check
413
-        } else if (is_array($value) && 0 === count($value)) {
413
+        }else if (is_array($value) && 0 === count($value)) {
414 414
             $isEmpty = true;
415 415
             // Empty string check
416
-        } else if ('' === preg_replace('/(\ |\r|\n)/m', '', $value)) {
416
+        }else if ('' === preg_replace('/(\ |\r|\n)/m', '', $value)) {
417 417
             $isEmpty = true;
418 418
         }
419 419
 
@@ -440,7 +440,7 @@  discard block
 block discarded – undo
440 440
             && array_key_exists($key, $field)
441 441
             && !array_key_exists('error', $field[$key])
442 442
             && !empty($field['value'])
443
-            && preg_match('/' . $field['pattern'] . '/', $field['value']) === 0
443
+            && preg_match('/'.$field['pattern'].'/', $field['value']) === 0
444 444
         ) {
445 445
             $this->setError($key, str_replace('%s', "<strong>{$key}</strong>", t('El campo %s no tiene un formato válido')));
446 446
             $field['error'] = $this->getError($key);
@@ -462,10 +462,10 @@  discard block
 block discarded – undo
462 462
         if (array_key_exists($key, $data[$formName])) {
463 463
             if (preg_match('/id/i', $key) && ($data[$formName][$key] === 0 || $data[$formName][$key] === '%' || $data[$formName][$key] === '')) {
464 464
                 $field['value'] = null;
465
-            } else {
465
+            }else {
466 466
                 $field['value'] = $data[$formName][$key];
467 467
             }
468
-        } else {
468
+        }else {
469 469
             unset($field['value']);
470 470
         }
471 471
         return array($data, $field);
@@ -479,8 +479,8 @@  discard block
 block discarded – undo
479 479
      */
480 480
     private function hydrateModelField($key, $value)
481 481
     {
482
-        $setter = 'set' . ucfirst($key);
483
-        $getter = 'get' . ucfirst($key);
482
+        $setter = 'set'.ucfirst($key);
483
+        $getter = 'get'.ucfirst($key);
484 484
         if (method_exists($this->model, $setter)) {
485 485
             if (method_exists($this->model, $getter)) {
486 486
                 $tmp = $this->model->$getter();
@@ -505,16 +505,16 @@  discard block
 block discarded – undo
505 505
     {
506 506
         //Extraemos el dato del modelo relacionado si existe el getter
507 507
         $method = null;
508
-        if (array_key_exists('class_data', $field) && method_exists($val, 'get' . $field['class_data'])) {
509
-            $classMethod = 'get' . $field['class_data'];
508
+        if (array_key_exists('class_data', $field) && method_exists($val, 'get'.$field['class_data'])) {
509
+            $classMethod = 'get'.$field['class_data'];
510 510
             $class = $val->$classMethod();
511
-            if (array_key_exists('class_id', $field) && method_exists($class, 'get' . $field['class_id'])) {
512
-                $method = 'get' . $field['class_id'];
511
+            if (array_key_exists('class_id', $field) && method_exists($class, 'get'.$field['class_id'])) {
512
+                $method = 'get'.$field['class_id'];
513 513
                 $data[] = $class->$method();
514
-            } else {
514
+            }else {
515 515
                 $data[] = $class->getPrimaryKey();
516 516
             }
517
-        } else {
517
+        }else {
518 518
             $data[] = $val;
519 519
         }
520 520
 
@@ -530,7 +530,7 @@  discard block
 block discarded – undo
530 530
     private function extractModelFieldValue($key, $field)
531 531
     {
532 532
         //Extraemos el valor del campo del modelo
533
-        $method = 'get' . ucfirst($key);
533
+        $method = 'get'.ucfirst($key);
534 534
         $type = (array_key_exists('type', $field)) ? $field['type'] : 'text';
535 535
         //Extraemos los campos del modelo
536 536
         if (method_exists($this->model, $method)) {
@@ -540,16 +540,16 @@  discard block
 block discarded – undo
540 540
                 //Si es una relación múltiple
541 541
                 if ($value instanceof ObjectCollection) {
542 542
                     $field = $this->computeModelFieldValue($field, $value, $type);
543
-                } else { //O una relación unitaria
543
+                }else { //O una relación unitaria
544 544
                     if (method_exists($value, '__toString')) {
545 545
                         $field['value'] = $value;
546 546
                     } elseif ($value instanceof \DateTime) {
547 547
                         $field['value'] = $value->format('Y-m-d H:i:s');
548
-                    } else {
548
+                    }else {
549 549
                         $field['value'] = $value->getPrimaryKey();
550 550
                     }
551 551
                 }
552
-            } else {
552
+            }else {
553 553
                 $field['value'] = $value;
554 554
             }
555 555
         }
Please login to merge, or discard this patch.
src/services/DocumentorService.php 1 patch
Spacing   +24 added lines, -24 removed lines patch added patch discarded remove patch
@@ -56,10 +56,10 @@  discard block
 block discarded – undo
56 56
                     if ($module === $requestModule && !preg_match('/^ROOT/i', $module)) {
57 57
                         $modules = [
58 58
                             'name' => $module,
59
-                            'path' => dirname($info['base'] . DIRECTORY_SEPARATOR . '..'),
59
+                            'path' => dirname($info['base'].DIRECTORY_SEPARATOR.'..'),
60 60
                         ];
61 61
                     }
62
-                } catch (\Exception $e) {
62
+                }catch (\Exception $e) {
63 63
                     $modules[] = $e->getMessage();
64 64
                 }
65 65
             }
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
      */
78 78
     public function extractApiEndpoints(array $module)
79 79
     {
80
-        $modulePath = $module['path'] . DIRECTORY_SEPARATOR . 'Api';
80
+        $modulePath = $module['path'].DIRECTORY_SEPARATOR.'Api';
81 81
         $moduleName = $module['name'];
82 82
         $endpoints = [];
83 83
         if (file_exists($modulePath)) {
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
             if (count($finder)) {
87 87
                 /** @var \SplFileInfo $file */
88 88
                 foreach ($finder as $file) {
89
-                    $namespace = "\\{$moduleName}\\Api\\" . str_replace('.php', '', $file->getFilename());
89
+                    $namespace = "\\{$moduleName}\\Api\\".str_replace('.php', '', $file->getFilename());
90 90
                     $info = $this->extractApiInfo($namespace, $moduleName);
91 91
                     if (!empty($info)) {
92 92
                         $endpoints[$namespace] = $info;
@@ -109,14 +109,14 @@  discard block
 block discarded – undo
109 109
         if (Router::exists($namespace) && !I18nHelper::checkI18Class($namespace)) {
110 110
             $reflection = new \ReflectionClass($namespace);
111 111
             $visible = InjectorHelper::checkIsVisible($reflection->getDocComment());
112
-            if($visible) {
112
+            if ($visible) {
113 113
                 foreach ($reflection->getMethods(\ReflectionMethod::IS_PUBLIC) as $method) {
114 114
                     try {
115 115
                         $mInfo = $this->extractMethodInfo($namespace, $method, $reflection, $module);
116 116
                         if (NULL !== $mInfo) {
117 117
                             $info[] = $mInfo;
118 118
                         }
119
-                    } catch (\Exception $e) {
119
+                    }catch (\Exception $e) {
120 120
                         Logger::log($e->getMessage(), LOG_ERR);
121 121
                     }
122 122
                 }
@@ -249,7 +249,7 @@  discard block
 block discarded – undo
249 249
             $payload = $this->extractModelFields($namespace);
250 250
             $reflector = new \ReflectionClass($namespace);
251 251
             $shortName = $reflector->getShortName();
252
-        } else {
252
+        }else {
253 253
             $namespace = $model;
254 254
             $shortName = $model;
255 255
         }
@@ -338,10 +338,10 @@  discard block
 block discarded – undo
338 338
                         "required" => $field->isNotNull(),
339 339
                         'format' => $format,
340 340
                     ];
341
-                    if(count($field->getValueSet())) {
341
+                    if (count($field->getValueSet())) {
342 342
                         $info['enum'] = array_values($field->getValueSet());
343 343
                     }
344
-                    if(null !== $field->getDefaultValue()) {
344
+                    if (null !== $field->getDefaultValue()) {
345 345
                         $info['default'] = $field->getDefaultValue();
346 346
                     }
347 347
                     $payload[ApiHelper::getColumnMapName($field)] = $info;
@@ -349,7 +349,7 @@  discard block
 block discarded – undo
349 349
             } elseif (null !== $reflector && $reflector->isSubclassOf(self::DTO_INTERFACE)) {
350 350
                 $payload = $this->extractDtoProperties($namespace);
351 351
             }
352
-        } catch (\Exception $e) {
352
+        }catch (\Exception $e) {
353 353
             Logger::log($e->getMessage(), LOG_ERR);
354 354
         }
355 355
 
@@ -380,7 +380,7 @@  discard block
 block discarded – undo
380 380
                     $return = $this->extractReturn($modelNamespace, $docComments);
381 381
                     $url = array_pop($route);
382 382
                     $methodInfo = [
383
-                        'url' => str_replace('/' . $module . '/api', '', $url),
383
+                        'url' => str_replace('/'.$module.'/api', '', $url),
384 384
                         'method' => $info['http'],
385 385
                         'description' => $info['label'],
386 386
                         'return' => $return,
@@ -391,7 +391,7 @@  discard block
 block discarded – undo
391 391
                     $this->setRequestParams($method, $methodInfo, $modelNamespace, $docComments);
392 392
                     $this->setQueryParams($method, $methodInfo);
393 393
                     $this->setRequestHeaders($reflection, $methodInfo);
394
-                } catch (\Exception $e) {
394
+                }catch (\Exception $e) {
395 395
                     Logger::log($e->getMessage(), LOG_ERR);
396 396
                 }
397 397
             }
@@ -460,10 +460,10 @@  discard block
 block discarded – undo
460 460
         $formatted = [
461 461
             "swagger" => "2.0",
462 462
             "host" => preg_replace('/^(http|https)\:\/\/(.*)\/$/i', '$2', Router::getInstance()->getRoute('', true)),
463
-            "basePath" => '/' . $module['name'] . '/api',
463
+            "basePath" => '/'.$module['name'].'/api',
464 464
             "schemes" => [Request::getInstance()->getServer('HTTPS') === 'on' ? 'https' : 'http'],
465 465
             "info" => [
466
-                "title" => t('Documentación API módulo ') . $module['name'],
466
+                "title" => t('Documentación API módulo ').$module['name'],
467 467
                 "version" => Config::getParam('api.version', '1.0.0'),
468 468
                 "contact" => [
469 469
                     "name" => Config::getParam("author", "Fran López"),
@@ -476,7 +476,7 @@  discard block
 block discarded – undo
476 476
         foreach ($endpoints as $model) {
477 477
             foreach ($model as $endpoint) {
478 478
                 if (!preg_match('/^\/(admin|api)\//i', $endpoint['url']) && strlen($endpoint['url'])) {
479
-                    $url = preg_replace('/\/' . $module['name'] . '\/api/i', '', $endpoint['url']);
479
+                    $url = preg_replace('/\/'.$module['name'].'\/api/i', '', $endpoint['url']);
480 480
                     $description = $endpoint['description'];
481 481
                     $method = strtolower($endpoint['method']);
482 482
                     $paths[$url][$method] = [
@@ -537,7 +537,7 @@  discard block
 block discarded – undo
537 537
     protected function extractDtoName($dto, $isArray = false)
538 538
     {
539 539
         $dto = explode('\\', $dto);
540
-        $modelDto = array_pop($dto) . "Dto";
540
+        $modelDto = array_pop($dto)."Dto";
541 541
         if ($isArray) {
542 542
             $modelDto .= "List";
543 543
         }
@@ -587,10 +587,10 @@  discard block
 block discarded – undo
587 587
     {
588 588
 
589 589
         $methodInfo['headers'] = [];
590
-        foreach($reflection->getProperties() as $property) {
590
+        foreach ($reflection->getProperties() as $property) {
591 591
             $doc = $property->getDocComment();
592 592
             preg_match('/@header\ (.*)\n/i', $doc, $headers);
593
-            if(count($headers)) {
593
+            if (count($headers)) {
594 594
                 $header = [
595 595
                     "name" => $headers[1],
596 596
                     "in" => "header",
@@ -635,7 +635,7 @@  discard block
 block discarded – undo
635 635
             foreach ($method->getParameters() as $parameter) {
636 636
                 $parameterName = $parameter->getName();
637 637
                 $types = [];
638
-                preg_match_all('/\@param\ (.*)\ \$' . $parameterName . '$/im', $docComments, $types);
638
+                preg_match_all('/\@param\ (.*)\ \$'.$parameterName.'$/im', $docComments, $types);
639 639
                 if (count($types) > 1 && count($types[1]) > 0) {
640 640
                     $methodInfo['parameters'][$parameterName] = $types[1][0];
641 641
                 }
@@ -657,21 +657,21 @@  discard block
 block discarded – undo
657 657
                     $modelDto['objects'][$dtoName][$param] = [
658 658
                         'type' => 'array',
659 659
                         'items' => [
660
-                            '$ref' => '#/definitions/' . $info['type'],
660
+                            '$ref' => '#/definitions/'.$info['type'],
661 661
                         ]
662 662
                     ];
663
-                } else {
663
+                }else {
664 664
                     $modelDto['objects'][$dtoName][$param] = [
665 665
                         'type' => 'object',
666
-                        '$ref' => '#/definitions/' . $info['type'],
666
+                        '$ref' => '#/definitions/'.$info['type'],
667 667
                     ];
668 668
                 }
669 669
                 $modelDto['objects'][$info['class']] = $info['properties'];
670 670
                 $paramDto = $this->checkDtoAttributes($info['properties'], $info['properties'], $info['class']);
671
-                if(array_key_exists('objects', $paramDto)) {
671
+                if (array_key_exists('objects', $paramDto)) {
672 672
                     $modelDto['objects'] = array_merge($modelDto['objects'], $paramDto['objects']);
673 673
                 }
674
-            } else {
674
+            }else {
675 675
                 $modelDto['objects'][$dtoName][$param] = $info;
676 676
             }
677 677
         }
Please login to merge, or discard this patch.
src/base/Singleton.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
      */
23 23
     public function __construct()
24 24
     {
25
-        Logger::log(static::class . ' constructor invoked');
25
+        Logger::log(static::class.' constructor invoked');
26 26
         $this->init();
27 27
     }
28 28
 
@@ -81,14 +81,14 @@  discard block
 block discarded – undo
81 81
         $calledClass = static::class;
82 82
         try {
83 83
             $instance = InjectorHelper::constructInyectableInstance($variable, $singleton, $classNameSpace, $calledClass);
84
-            $setter = 'set' . ucfirst($variable);
84
+            $setter = 'set'.ucfirst($variable);
85 85
             if (method_exists($calledClass, $setter)) {
86 86
                 $this->$setter($instance);
87
-            } else {
87
+            }else {
88 88
                 $this->$variable = $instance;
89 89
             }
90
-        } catch (\Exception $e) {
91
-            Logger::log($e->getMessage() . ': ' . $e->getFile() . ' [' . $e->getLine() . ']', LOG_ERR);
90
+        }catch (\Exception $e) {
91
+            Logger::log($e->getMessage().': '.$e->getFile().' ['.$e->getLine().']', LOG_ERR);
92 92
             throw $e;
93 93
         }
94 94
         return $this;
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
     {
104 104
         if (!$this->isLoaded()) {
105 105
             $filename = sha1(get_class($this));
106
-            $cacheFilename = 'reflections' . DIRECTORY_SEPARATOR . substr($filename, 0, 2) . DIRECTORY_SEPARATOR . substr($filename, 2, 2) . DIRECTORY_SEPARATOR . $filename . '.json';
106
+            $cacheFilename = 'reflections'.DIRECTORY_SEPARATOR.substr($filename, 0, 2).DIRECTORY_SEPARATOR.substr($filename, 2, 2).DIRECTORY_SEPARATOR.$filename.'.json';
107 107
             /** @var \PSFS\base\Cache $cacheService */
108 108
             $cacheService = Cache::getInstance();
109 109
             /** @var \PSFS\base\config\Config $configService */
@@ -121,8 +121,8 @@  discard block
 block discarded – undo
121 121
                 }
122 122
             }
123 123
             $this->setLoaded();
124
-        } else {
125
-            Logger::log(get_class($this) . ' already loaded', LOG_INFO);
124
+        }else {
125
+            Logger::log(get_class($this).' already loaded', LOG_INFO);
126 126
         }
127 127
     }
128 128
 }
Please login to merge, or discard this patch.
src/base/types/traits/OutputTrait.php 1 patch
Spacing   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
                 $this->setStatusCode(Template::STATUS_OK);
122 122
                 break;
123 123
             default:
124
-                $this->setStatusCode('HTTP/1.0 ' .($status ?: 200));
124
+                $this->setStatusCode('HTTP/1.0 '.($status ?: 200));
125 125
                 break;
126 126
         }
127 127
         return $this;
@@ -135,11 +135,11 @@  discard block
 block discarded – undo
135 135
     private function setReponseHeaders($contentType = 'text/html', array $cookies = array())
136 136
     {
137 137
         $powered = Config::getParam('poweredBy', 'PSFS');
138
-        header('X-Powered-By: ' . $powered);
138
+        header('X-Powered-By: '.$powered);
139 139
         ResponseHelper::setStatusHeader($this->getStatusCode());
140 140
         ResponseHelper::setAuthHeaders($this->isPublicZone());
141 141
         ResponseHelper::setCookieHeaders($cookies);
142
-        header('Content-type: ' . $contentType);
142
+        header('Content-type: '.$contentType);
143 143
 
144 144
     }
145 145
 
@@ -152,20 +152,20 @@  discard block
 block discarded – undo
152 152
      */
153 153
     public function output($output = '', $contentType = 'text/html', array $cookies = array())
154 154
     {
155
-        if(!self::isTest()) {
155
+        if (!self::isTest()) {
156 156
             Logger::log('Start output response');
157 157
             ob_start();
158 158
             $this->setReponseHeaders($contentType, $cookies);
159
-            header('Content-length: ' . strlen($output));
160
-            header('CRC: ' . crc32($output));
159
+            header('Content-length: '.strlen($output));
160
+            header('CRC: '.crc32($output));
161 161
 
162 162
             $needCache = Cache::needCache();
163 163
             $cache = Cache::getInstance();
164 164
             list($path, $cacheDataName) = $cache->getRequestCacheHash();
165 165
             if (null !== $cacheDataName && false !== $needCache && $this->getStatusCode() === Template::STATUS_OK) {
166 166
                 Logger::log('Saving output response into cache');
167
-                $cache->storeData('json' . DIRECTORY_SEPARATOR . $path . $cacheDataName, $output);
168
-                $cache->storeData('json' . DIRECTORY_SEPARATOR . $path . $cacheDataName . '.headers', headers_list(), Cache::JSON);
167
+                $cache->storeData('json'.DIRECTORY_SEPARATOR.$path.$cacheDataName, $output);
168
+                $cache->storeData('json'.DIRECTORY_SEPARATOR.$path.$cacheDataName.'.headers', headers_list(), Cache::JSON);
169 169
             } elseif (Request::getInstance()->getMethod() !== 'GET') {
170 170
                 $cache->flushCache();
171 171
             }
@@ -175,7 +175,7 @@  discard block
 block discarded – undo
175 175
             ob_end_clean();
176 176
             Logger::log('End output response');
177 177
             $this->closeRender();
178
-        } else {
178
+        }else {
179 179
             return $output;
180 180
         }
181 181
     }
@@ -188,11 +188,11 @@  discard block
 block discarded – undo
188 188
         Logger::log('Close template render');
189 189
         $uri = Request::requestUri();
190 190
         Security::getInstance()->setSessionKey('lastRequest', array(
191
-            'url' => Request::getInstance()->getRootUrl() . $uri,
191
+            'url' => Request::getInstance()->getRootUrl().$uri,
192 192
             'ts' => microtime(true),
193 193
         ));
194 194
         Security::getInstance()->updateSession();
195
-        Logger::log('End request: ' . $uri, LOG_INFO);
195
+        Logger::log('End request: '.$uri, LOG_INFO);
196 196
         exit;
197 197
     }
198 198
 
@@ -230,17 +230,17 @@  discard block
 block discarded – undo
230 230
         /////////////////////////////////////////////////////////////
231 231
         // Date in the past sets the value to already have been expired.
232 232
         header('Expires: Sat, 26 Jul 1997 05:00:00 GMT');
233
-        header('Last-Modified: ' . gmdate('D, d M Y H:i:s') . ' GMT');
233
+        header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT');
234 234
         header('Cache-Control: no-store, no-cache, must-revalidate'); // HTTP/1.1
235 235
         header('Cache-Control: pre-check=0, post-check=0, max-age=0'); // HTTP/1.1
236 236
         header('Pragma: no-cache');
237 237
         header('Expires: 0');
238 238
         header('Content-Transfer-Encoding: binary');
239
-        header('Content-type: ' . $content);
240
-        header('Content-length: ' . strlen($data));
241
-        header('Content-Disposition: attachment; filename="' . $filename . '"');
239
+        header('Content-type: '.$content);
240
+        header('Content-length: '.strlen($data));
241
+        header('Content-Disposition: attachment; filename="'.$filename.'"');
242 242
         header('Access-Control-Expose-Headers: Filename');
243
-        header('Filename: ' . $filename);
243
+        header('Filename: '.$filename);
244 244
         echo $data;
245 245
         ob_flush();
246 246
         ob_end_clean();
Please login to merge, or discard this patch.
src/base/types/helpers/ApiHelper.php 1 patch
Spacing   +37 added lines, -37 removed lines patch added patch discarded remove patch
@@ -37,20 +37,20 @@  discard block
 block discarded – undo
37 37
         $behaviors = $tableMap->getBehaviors();
38 38
         foreach ($map::getFieldNames() as $field) {
39 39
             $fDto = self::parseFormField($domain, $tableMap, $field, $behaviors);
40
-            if(null !== $fDto) {
40
+            if (null !== $fDto) {
41 41
                 $form->addField($fDto);
42 42
             }
43 43
         }
44 44
 
45
-        if(array_key_exists('i18n', $behaviors)) {
46
-            $relateI18n = $tableMap->getRelation($tableMap->getPhpName() . 'I18n');
47
-            if(null !== $relateI18n) {
45
+        if (array_key_exists('i18n', $behaviors)) {
46
+            $relateI18n = $tableMap->getRelation($tableMap->getPhpName().'I18n');
47
+            if (null !== $relateI18n) {
48 48
                 $i18NTableMap = $relateI18n->getLocalTable();
49
-                foreach($i18NTableMap->getColumns() as $columnMap) {
49
+                foreach ($i18NTableMap->getColumns() as $columnMap) {
50 50
                     $columnName = self::getColumnMapName($columnMap);
51
-                    if(!$form->fieldExists($columnName)) {
51
+                    if (!$form->fieldExists($columnName)) {
52 52
                         $fDto = self::parseFormField($domain, $i18NTableMap, $columnMap->getPhpName(), $i18NTableMap->getBehaviors());
53
-                        if(null !== $fDto) {
53
+                        if (null !== $fDto) {
54 54
                             $fDto->pk = false;
55 55
                             $form->addField($fDto);
56 56
                         }
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
         $fDto->entity = $relatedModel;
80 80
         $relatedField = $foreignTable->getColumn($mappedColumn->getRelatedColumnName());
81 81
         $fDto->relatedField = $relatedField->getPhpName();
82
-        $fDto->url = Router::getInstance()->getRoute(strtolower($domain) . '-api-' . $relatedModel);
82
+        $fDto->url = Router::getInstance()->getRoute(strtolower($domain).'-api-'.$relatedModel);
83 83
         return $fDto;
84 84
     }
85 85
 
@@ -186,14 +186,14 @@  discard block
 block discarded – undo
186 186
     {
187 187
         $column = null;
188 188
         try {
189
-            foreach($tableMap->getColumns() as $tableMapColumn) {
189
+            foreach ($tableMap->getColumns() as $tableMapColumn) {
190 190
                 $columnName = $tableMapColumn->getPhpName();
191
-                if(preg_match('/^'.$field.'$/i', $columnName)) {
191
+                if (preg_match('/^'.$field.'$/i', $columnName)) {
192 192
                     $column = $tableMapColumn;
193 193
                     break;
194 194
                 }
195 195
             }
196
-        } catch (\Exception $e) {
196
+        }catch (\Exception $e) {
197 197
             Logger::log($e->getMessage(), LOG_DEBUG);
198 198
         }
199 199
         return $column;
@@ -207,18 +207,18 @@  discard block
 block discarded – undo
207 207
     private static function addQueryFilter(ColumnMap $column, ModelCriteria &$query, $value = null)
208 208
     {
209 209
         $tableField = $column->getFullyQualifiedName();
210
-        if(is_array($value)) {
210
+        if (is_array($value)) {
211 211
             $query->add($tableField, $value, Criteria::IN);
212 212
         } elseif (preg_match('/^\[/', $value) && preg_match('/\]$/', $value)) {
213 213
             $query->add($tableField, explode(',', preg_replace('/(\[|\])/', '', $value)), Criteria::IN);
214 214
         } elseif (preg_match('/^(\'|\")(.*)(\'|\")$/', $value)) {
215 215
             $text = preg_replace('/(\'|\")/', '', $value);
216 216
             $text = preg_replace('/\ /', '%', $text);
217
-            $query->add($tableField, '%' . $text . '%', Criteria::LIKE);
218
-        } else {
219
-            if(null !== $column->getValueSet()) {
217
+            $query->add($tableField, '%'.$text.'%', Criteria::LIKE);
218
+        }else {
219
+            if (null !== $column->getValueSet()) {
220 220
                 $valueSet = $column->getValueSet();
221
-                if(in_array($value, $valueSet)) {
221
+                if (in_array($value, $valueSet)) {
222 222
                     $value = array_search($value, $valueSet);
223 223
                 }
224 224
             }
@@ -238,31 +238,31 @@  discard block
 block discarded – undo
238 238
         $sep = '';
239 239
         foreach ($tableMap->getColumns() as $column) {
240 240
             if ($column->isText()) {
241
-                $exp .= $sep . 'IFNULL(' . $column->getFullyQualifiedName() . ',"")';
241
+                $exp .= $sep.'IFNULL('.$column->getFullyQualifiedName().',"")';
242 242
                 $sep = ', " ", ';
243 243
             }
244 244
         }
245
-        foreach($tableMap->getRelations() as $relation) {
246
-            if(preg_match('/I18n$/i', $relation->getName())) {
245
+        foreach ($tableMap->getRelations() as $relation) {
246
+            if (preg_match('/I18n$/i', $relation->getName())) {
247 247
                 $localeTableMap = $relation->getLocalTable();
248 248
                 foreach ($localeTableMap->getColumns() as $column) {
249 249
                     if ($column->isText()) {
250
-                        $exp .= $sep . 'IFNULL(' . $column->getFullyQualifiedName() . ',"")';
250
+                        $exp .= $sep.'IFNULL('.$column->getFullyQualifiedName().',"")';
251 251
                         $sep = ', " ", ';
252 252
                     }
253 253
                 }
254 254
             }
255 255
         }
256 256
         foreach ($extraColumns as $extra => $name) {
257
-            if(!preg_match("/(COUNT|DISTINCT|SUM|MAX|MIN|GROUP)/i", $extra)) {
258
-                $exp .= $sep . $extra;
257
+            if (!preg_match("/(COUNT|DISTINCT|SUM|MAX|MIN|GROUP)/i", $extra)) {
258
+                $exp .= $sep.$extra;
259 259
                 $sep = ', " ", ';
260 260
             }
261 261
         }
262 262
         $exp .= ")";
263 263
         $text = preg_replace('/(\'|\")/', '', $value);
264 264
         $text = preg_replace('/\ /', '%', $text);
265
-        $query->where($exp . Criteria::LIKE . '"%' . $text . '%"');
265
+        $query->where($exp.Criteria::LIKE.'"%'.$text.'%"');
266 266
     }
267 267
 
268 268
     /**
@@ -287,7 +287,7 @@  discard block
 block discarded – undo
287 287
      */
288 288
     public static function extractQuery($modelNameNamespace, ConnectionInterface $con = null)
289 289
     {
290
-        $queryReflector = new \ReflectionClass($modelNameNamespace . "Query");
290
+        $queryReflector = new \ReflectionClass($modelNameNamespace."Query");
291 291
         /** @var \Propel\Runtime\ActiveQuery\ModelCriteria $query */
292 292
         $query = $queryReflector->getMethod('create')->invoke($con);
293 293
 
@@ -316,7 +316,7 @@  discard block
 block discarded – undo
316 316
         } elseif ($mappedColumn->isText()) {
317 317
             if ($mappedColumn->getSize() > 100) {
318 318
                 $fDto = self::createField($field, Field::TEXTAREA_TYPE, $required);
319
-            } else {
319
+            }else {
320 320
                 $fDto = self::generateStringField($field, $required);
321 321
             }
322 322
         } elseif ($mappedColumn->getType() === PropelTypes::BOOLEAN) {
@@ -344,7 +344,7 @@  discard block
 block discarded – undo
344 344
                 $fDto->pk = true;
345 345
             }
346 346
         }
347
-        switch(Config::getParam('api.field.case', TableMap::TYPE_PHPNAME)) {
347
+        switch (Config::getParam('api.field.case', TableMap::TYPE_PHPNAME)) {
348 348
             default:
349 349
             case TableMap::TYPE_PHPNAME:
350 350
                 $fDto->name = $mappedColumn->getPhpName();
@@ -368,7 +368,7 @@  discard block
 block discarded – undo
368 368
      */
369 369
     public static function extractPrimaryKeyColumnName(TableMap $tableMap) {
370 370
         $modelPk = null;
371
-        foreach($tableMap->getPrimaryKeys() as $pk) {
371
+        foreach ($tableMap->getPrimaryKeys() as $pk) {
372 372
             $modelPk = $pk;
373 373
             break;
374 374
         }
@@ -377,15 +377,15 @@  discard block
 block discarded – undo
377 377
 
378 378
     private static function mapResult(ActiveRecordInterface $model, array $data = []) {
379 379
         $result = [];
380
-        foreach($data as $key => $value) {
380
+        foreach ($data as $key => $value) {
381 381
             try {
382 382
                 $realValue = $model->getByName($key);
383
-            } catch(\Exception $e) {
383
+            }catch (\Exception $e) {
384 384
                 $realValue = $value;
385 385
             }
386
-            if(Api::API_MODEL_KEY_FIELD === $key) {
386
+            if (Api::API_MODEL_KEY_FIELD === $key) {
387 387
                 $result[$key] = (integer)$realValue;
388
-            } else {
388
+            }else {
389 389
                 $result[$key] = $realValue;
390 390
             }
391 391
         }
@@ -402,14 +402,14 @@  discard block
 block discarded – undo
402 402
         $objTableMap = get_class($formatter->getTableMap());
403 403
         /** @var TableMapTrait $objTableMap */
404 404
         $objData = $data;
405
-        foreach($objTableMap::getFieldNames() as $field) {
406
-            if(!array_key_exists($field, $objData)) {
405
+        foreach ($objTableMap::getFieldNames() as $field) {
406
+            if (!array_key_exists($field, $objData)) {
407 407
                 $objData[$field] = null;
408 408
             }
409 409
         }
410 410
         $obj = @$formatter->getAllObjectsFromRow($objData);
411 411
         $result = self::mapResult($obj, $data);
412
-        if(!preg_match('/' . $modelPk->getPhpName() . '/i', $query[Api::API_FIELDS_RESULT_FIELD])) {
412
+        if (!preg_match('/'.$modelPk->getPhpName().'/i', $query[Api::API_FIELDS_RESULT_FIELD])) {
413 413
             unset($result[$modelPk->getPhpName()]);
414 414
         }
415 415
         return $result;
@@ -420,7 +420,7 @@  discard block
 block discarded – undo
420 420
      */
421 421
     public static function getFieldTypes() {
422 422
         $configType = Config::getParam('api.field.case');
423
-        switch($configType) {
423
+        switch ($configType) {
424 424
             default:
425 425
             case 'UpperCamelCase':
426 426
             case TableMap::TYPE_PHPNAME:
@@ -446,11 +446,11 @@  discard block
 block discarded – undo
446 446
     }
447 447
 
448 448
     public static function getColumnMapName(ColumnMap $field) {
449
-        switch(self::getFieldTypes()) {
449
+        switch (self::getFieldTypes()) {
450 450
             default:
451 451
             case 'UpperCamelCase':
452 452
             case TableMap::TYPE_PHPNAME:
453
-                $columnName =$field->getPhpName();
453
+                $columnName = $field->getPhpName();
454 454
                 break;
455 455
             case 'camelCase':
456 456
             case 'lowerCamelCase':
Please login to merge, or discard this patch.
src/base/Service.php 1 patch
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
     protected $isMultipart = false;
71 71
 
72 72
     private function closeConnection() {
73
-        if(null !== $this->con) {
73
+        if (null !== $this->con) {
74 74
             curl_close($this->con);
75 75
         }
76 76
     }
@@ -233,7 +233,7 @@  discard block
 block discarded – undo
233 233
      */
234 234
     public function setIsJson($isJson = true) {
235 235
         $this->isJson = $isJson;
236
-        if($isJson) {
236
+        if ($isJson) {
237 237
             $this->setIsMultipart(false);
238 238
         }
239 239
     }
@@ -251,7 +251,7 @@  discard block
 block discarded – undo
251 251
      */
252 252
     public function setIsMultipart($isMultipart = true) {
253 253
         $this->isMultipart = $isMultipart;
254
-        if($isMultipart) {
254
+        if ($isMultipart) {
255 255
             $this->setIsJson(false);
256 256
         }
257 257
     }
@@ -271,7 +271,7 @@  discard block
 block discarded – undo
271 271
         $this->url = NULL;
272 272
         $this->params = array();
273 273
         $this->headers = array();
274
-        Logger::log('Context service for ' . static::class . ' cleared!');
274
+        Logger::log('Context service for '.static::class.' cleared!');
275 275
         $this->closeConnection();
276 276
     }
277 277
 
@@ -314,18 +314,18 @@  discard block
 block discarded – undo
314 314
     }
315 315
 
316 316
     protected function applyOptions() {
317
-        if(count($this->options)) {
317
+        if (count($this->options)) {
318 318
             curl_setopt_array($this->con, $this->options);
319 319
         }
320 320
     }
321 321
 
322 322
     protected function applyHeaders() {
323 323
         $headers = [];
324
-        foreach($this->headers as $key => $value) {
325
-            $headers[] = $key . ': ' . $value;
324
+        foreach ($this->headers as $key => $value) {
325
+            $headers[] = $key.': '.$value;
326 326
         }
327 327
         $headers[self::PSFS_TRACK_HEADER] = Logger::getUid();
328
-        if(count($headers)) {
328
+        if (count($headers)) {
329 329
             curl_setopt($this->con, CURLOPT_HTTPHEADER, $headers);
330 330
         }
331 331
     }
@@ -334,10 +334,10 @@  discard block
 block discarded – undo
334 334
      * @return int
335 335
      */
336 336
     private function parseServiceType() {
337
-        if($this->getIsJson()) {
337
+        if ($this->getIsJson()) {
338 338
             return ServiceHelper::TYPE_JSON;
339 339
         }
340
-        if($this->getIsMultipart()) {
340
+        if ($this->getIsMultipart()) {
341 341
             return ServiceHelper::TYPE_MULTIPART;
342 342
         }
343 343
         return ServiceHelper::TYPE_HTTP;
@@ -350,9 +350,9 @@  discard block
 block discarded – undo
350 350
             case Request::VERB_GET:
351 351
             default:
352 352
                 $this->addOption(CURLOPT_CUSTOMREQUEST, Request::VERB_GET);
353
-                if(!empty($this->params)) {
353
+                if (!empty($this->params)) {
354 354
                     $sep = false === strpos($this->getUrl(), '?') ? '?' : '';
355
-                    $this->url = $this->url . $sep . http_build_query($this->params);
355
+                    $this->url = $this->url.$sep.http_build_query($this->params);
356 356
                 }
357 357
                 break;
358 358
             case Request::VERB_POST:
@@ -384,14 +384,14 @@  discard block
 block discarded – undo
384 384
         $this->applyOptions();
385 385
         $this->applyHeaders();
386 386
         $verbose = null;
387
-        if('debug' === Config::getParam('log.level')) {
387
+        if ('debug' === Config::getParam('log.level')) {
388 388
             curl_setopt($this->con, CURLOPT_VERBOSE, true);
389 389
             $verbose = fopen('php://temp', 'wb+');
390 390
             curl_setopt($this->con, CURLOPT_STDERR, $verbose);
391 391
         }
392 392
         $result = curl_exec($this->con);
393 393
         $this->result = $this->isJson ? json_decode($result, true) : $result;
394
-        if('debug' === Config::getParam('log.level')) {
394
+        if ('debug' === Config::getParam('log.level')) {
395 395
             rewind($verbose);
396 396
             $verboseLog = stream_get_contents($verbose);
397 397
             Logger::log($verboseLog, LOG_DEBUG, [
@@ -401,7 +401,7 @@  discard block
 block discarded – undo
401 401
             ]);
402 402
             $this->info['verbose'] = $verboseLog;
403 403
         }
404
-        Logger::log($this->url . ' response: ', LOG_DEBUG, is_array($this->result) ? $this->result : [$this->result]);
404
+        Logger::log($this->url.' response: ', LOG_DEBUG, is_array($this->result) ? $this->result : [$this->result]);
405 405
         $this->info = array_merge($this->info, curl_getinfo($this->con));
406 406
     }
407 407
 
Please login to merge, or discard this patch.
src/base/types/helpers/SlackHelper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
             'attachments' => [
30 30
                 [
31 31
                     "author_name" => $request->getRootUrl(true),
32
-                    "text" => $file . (strlen($line) ? ' [' . $line . ']' : ''),
32
+                    "text" => $file.(strlen($line) ? ' ['.$line.']' : ''),
33 33
                     "color" => Config::getParam('debug', true) ? 'warning' : "danger",
34 34
                     "title" => $message,
35 35
                     'fallback' => 'PSFS Error notifier',
Please login to merge, or discard this patch.
src/base/types/traits/Api/MutationTrait.php 1 patch
Spacing   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
         if (count($pks) === 1) {
81 81
             $pks = array_keys($pks);
82 82
             return [
83
-                $tableMap::TABLE_NAME . '.' . $pks[0] => Api::API_MODEL_KEY_FIELD
83
+                $tableMap::TABLE_NAME.'.'.$pks[0] => Api::API_MODEL_KEY_FIELD
84 84
             ];
85 85
         }
86 86
         if (count($pks) > 1) {
@@ -88,9 +88,9 @@  discard block
 block discarded – undo
88 88
             $principal = '';
89 89
             $sep = 'CONCAT(';
90 90
             foreach ($pks as $pk) {
91
-                $apiPks[$tableMap::TABLE_NAME . '.' . $pk->getName()] = $pk->getPhpName();
92
-                $principal .= $sep . $tableMap::TABLE_NAME . '.' . $pk->getName();
93
-                $sep = ', "' . Api::API_PK_SEPARATOR . '", ';
91
+                $apiPks[$tableMap::TABLE_NAME.'.'.$pk->getName()] = $pk->getPhpName();
92
+                $principal .= $sep.$tableMap::TABLE_NAME.'.'.$pk->getName();
93
+                $sep = ', "'.Api::API_PK_SEPARATOR.'", ';
94 94
             }
95 95
             $principal .= ')';
96 96
             $apiPks[$principal] = Api::API_MODEL_KEY_FIELD;
@@ -117,10 +117,10 @@  discard block
 block discarded – undo
117 117
         $pks = '';
118 118
         $sep = '';
119 119
         foreach ($tableMap->getPrimaryKeys() as $pk) {
120
-            $pks .= $sep . $pk->getFullyQualifiedName();
120
+            $pks .= $sep.$pk->getFullyQualifiedName();
121 121
             $sep = ', "|", ';
122 122
         }
123
-        $this->extraColumns['CONCAT("' . $tableMap->getPhpName() . ' #", ' . $pks . ')'] = Api::API_LIST_NAME_FIELD;
123
+        $this->extraColumns['CONCAT("'.$tableMap->getPhpName().' #", '.$pks.')'] = Api::API_LIST_NAME_FIELD;
124 124
     }
125 125
 
126 126
     /**
@@ -142,7 +142,7 @@  discard block
 block discarded – undo
142 142
             }
143 143
             if (null !== $column) {
144 144
                 $this->extraColumns[$column->getFullyQualifiedName()] = Api::API_LIST_NAME_FIELD;
145
-            } else {
145
+            }else {
146 146
                 $this->addClassListName($tableMap);
147 147
             }
148 148
         }
@@ -161,15 +161,15 @@  discard block
 block discarded – undo
161 161
             $this->addPkToList();
162 162
         }
163 163
         if (!empty($this->extraColumns)) {
164
-            if(Config::getParam('api.extrafields.compat', true)) {
164
+            if (Config::getParam('api.extrafields.compat', true)) {
165 165
                 $fields = array_values($this->extraColumns);
166
-            } else {
166
+            }else {
167 167
                 $returnFields = Request::getInstance()->getQuery(Api::API_FIELDS_RESULT_FIELD);
168 168
                 $fields = explode(',', $returnFields ?: '');
169 169
                 $fields[] = self::API_MODEL_KEY_FIELD;
170 170
             }
171 171
             foreach ($this->extraColumns as $expression => $columnName) {
172
-                if(empty($fields) || in_array($columnName, $fields)) {
172
+                if (empty($fields) || in_array($columnName, $fields)) {
173 173
                     $query->withColumn($expression, $columnName);
174 174
                 }
175 175
             }
@@ -201,17 +201,17 @@  discard block
 block discarded – undo
201 201
     {
202 202
         $this->extractApiLang();
203 203
         $model = $this->getModelNamespace();
204
-        $modelI18n = $model . 'I18n';
204
+        $modelI18n = $model.'I18n';
205 205
         if (method_exists($query, 'useI18nQuery')) {
206 206
             $query->useI18nQuery($this->lang);
207
-            $modelI18nTableMapClass = str_replace('\\Models\\', '\\Models\\Map\\', $modelI18n) . 'TableMap';
207
+            $modelI18nTableMapClass = str_replace('\\Models\\', '\\Models\\Map\\', $modelI18n).'TableMap';
208 208
             /** @var TableMap $modelI18nTableMap */
209 209
             $modelI18nTableMap = $modelI18nTableMapClass::getTableMap();
210
-            foreach($modelI18nTableMap->getColumns() as $columnMap) {
211
-                if(!$columnMap->isPrimaryKey()) {
210
+            foreach ($modelI18nTableMap->getColumns() as $columnMap) {
211
+                if (!$columnMap->isPrimaryKey()) {
212 212
                     $query->withColumn($columnMap->getFullyQualifiedName(), ApiHelper::getColumnMapName($columnMap));
213
-                } elseif(!$columnMap->isForeignKey()) {
214
-                    $query->withColumn('IFNULL(' . $columnMap->getFullyQualifiedName() . ', "'.$this->lang.'")', ApiHelper::getColumnMapName($columnMap));
213
+                } elseif (!$columnMap->isForeignKey()) {
214
+                    $query->withColumn('IFNULL('.$columnMap->getFullyQualifiedName().', "'.$this->lang.'")', ApiHelper::getColumnMapName($columnMap));
215 215
                 }
216 216
             }
217 217
         }
@@ -225,22 +225,22 @@  discard block
 block discarded – undo
225 225
         $model->fromArray($data, ApiHelper::getFieldTypes());
226 226
         $tableMap = $this->getTableMap();
227 227
         try {
228
-            if($tableMap->hasRelation($tableMap->getPhpName() . 'I18n'))
228
+            if ($tableMap->hasRelation($tableMap->getPhpName().'I18n'))
229 229
             {
230
-                $relateI18n = $tableMap->getRelation($tableMap->getPhpName() . 'I18n');
230
+                $relateI18n = $tableMap->getRelation($tableMap->getPhpName().'I18n');
231 231
                 $i18NTableMap = $relateI18n->getLocalTable();
232 232
                 $model->setLocale($this->lang);
233
-                foreach($i18NTableMap->getColumns() as $columnMap) {
234
-                    $method = 'set' . $columnMap->getPhpName();
233
+                foreach ($i18NTableMap->getColumns() as $columnMap) {
234
+                    $method = 'set'.$columnMap->getPhpName();
235 235
                     $dtoColumnName = ApiHelper::getColumnMapName($columnMap);
236
-                    if(array_key_exists($dtoColumnName, $data)
236
+                    if (array_key_exists($dtoColumnName, $data)
237 237
                         && method_exists($model, $method)
238 238
                         && !($columnMap->isPrimaryKey() && $columnMap->isForeignKey())) {
239 239
                         $model->$method($data[$dtoColumnName]);
240 240
                     }
241 241
                 }
242 242
             }
243
-        } catch(\Exception $e) {
243
+        }catch (\Exception $e) {
244 244
             Logger::log($e->getMessage(), LOG_DEBUG);
245 245
         }
246 246
     }
Please login to merge, or discard this patch.