Passed
Push — master ( 2ff097...780918 )
by Fran
05:07
created
src/controller/RouteController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@
 block discarded – undo
55 55
             $router->simpatize();
56 56
             Security::getInstance()->setFlash("callback_message", t("Rutas generadas correctamente"));
57 57
             Security::getInstance()->setFlash("callback_route", $this->getRoute("admin-routes", true));
58
-        } catch (\Exception $e) {
58
+        }catch (\Exception $e) {
59 59
             Logger::log($e->getMessage(), LOG_ERR);
60 60
             Security::getInstance()->setFlash("callback_message", t("Algo no ha salido bien, revisa los logs"));
61 61
             Security::getInstance()->setFlash("callback_route", $this->getRoute("admin-routes", true));
Please login to merge, or discard this patch.
src/controller/UserController.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
                 Logger::log('Configuration saved successful');
64 64
                 Security::getInstance()->setFlash("callback_message", t("Usuario agregado correctamente"));
65 65
                 Security::getInstance()->setFlash("callback_route", Router::getInstance()->getRoute("admin", true));
66
-            } else {
66
+            }else {
67 67
                 throw new ConfigException(t('Error al guardar los administradores, prueba a cambiar los permisos'));
68 68
             }
69 69
         }
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
     {
100 100
         if ($this->isAdmin()) {
101 101
             return $this->redirect('admin');
102
-        } else {
102
+        }else {
103 103
             return Admin::staticAdminLogon($route);
104 104
         }
105 105
     }
@@ -131,7 +131,7 @@  discard block
 block discarded – undo
131 131
                 $cookies = array(
132 132
                     array(
133 133
                         "name" => Security::getInstance()->getHash(),
134
-                        "value" => base64_encode($form->getFieldValue("user") . ":" . $form->getFieldValue("pass")),
134
+                        "value" => base64_encode($form->getFieldValue("user").":".$form->getFieldValue("pass")),
135 135
                         "expire" => time() + 3600,
136 136
                         "http" => true,
137 137
                     )
@@ -142,7 +142,7 @@  discard block
 block discarded – undo
142 142
                     'status_message' => t("Acceso permitido... redirigiendo!!"),
143 143
                     'delay' => 1,
144 144
                 );
145
-            } else {
145
+            }else {
146 146
                 $form->setError("user", t("El usuario no tiene acceso a la web"));
147 147
             }
148 148
         }
Please login to merge, or discard this patch.
src/services/GeneratorService.php 1 patch
Spacing   +60 added lines, -60 removed lines patch added patch discarded remove patch
@@ -39,24 +39,24 @@  discard block
 block discarded – undo
39 39
      */
40 40
     public static function findTranslations($path, $locale)
41 41
     {
42
-        $localePath = realpath(BASE_DIR . DIRECTORY_SEPARATOR . 'locale');
43
-        $localePath .= DIRECTORY_SEPARATOR . $locale . DIRECTORY_SEPARATOR . 'LC_MESSAGES' . DIRECTORY_SEPARATOR;
42
+        $localePath = realpath(BASE_DIR.DIRECTORY_SEPARATOR.'locale');
43
+        $localePath .= DIRECTORY_SEPARATOR.$locale.DIRECTORY_SEPARATOR.'LC_MESSAGES'.DIRECTORY_SEPARATOR;
44 44
 
45 45
         $translations = array();
46 46
         if (file_exists($path)) {
47 47
             $d = dir($path);
48 48
             while (false !== ($dir = $d->read())) {
49 49
                 GeneratorHelper::createDir($localePath);
50
-                if (!file_exists($localePath . 'translations.po')) {
51
-                    file_put_contents($localePath . 'translations.po', '');
50
+                if (!file_exists($localePath.'translations.po')) {
51
+                    file_put_contents($localePath.'translations.po', '');
52 52
                 }
53
-                $inspect_path = realpath($path . DIRECTORY_SEPARATOR . $dir);
54
-                $cmd_php = "export PATH=\$PATH:/opt/local/bin; xgettext " .
55
-                    $inspect_path . DIRECTORY_SEPARATOR .
53
+                $inspect_path = realpath($path.DIRECTORY_SEPARATOR.$dir);
54
+                $cmd_php = "export PATH=\$PATH:/opt/local/bin; xgettext ".
55
+                    $inspect_path.DIRECTORY_SEPARATOR.
56 56
                     "*.php --from-code=UTF-8 -j -L PHP --debug --force-po -o {$localePath}translations.po";
57
-                if (is_dir($path . DIRECTORY_SEPARATOR . $dir) && preg_match('/^\./', $dir) == 0) {
58
-                    $res = t('Revisando directorio: ') . $inspect_path;
59
-                    $res .= t('Comando ejecutado: ') . $cmd_php;
57
+                if (is_dir($path.DIRECTORY_SEPARATOR.$dir) && preg_match('/^\./', $dir) == 0) {
58
+                    $res = t('Revisando directorio: ').$inspect_path;
59
+                    $res .= t('Comando ejecutado: ').$cmd_php;
60 60
                     $res .= shell_exec($cmd_php);
61 61
                     usleep(10);
62 62
                     $translations[] = $res;
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
      */
78 78
     public function createStructureModule($module, $force = false, $type = "", $apiClass = "")
79 79
     {
80
-        $mod_path = CORE_DIR . DIRECTORY_SEPARATOR;
80
+        $mod_path = CORE_DIR.DIRECTORY_SEPARATOR;
81 81
         $module = ucfirst($module);
82 82
         $this->createModulePath($module, $mod_path);
83 83
         $this->createModulePathTree($module, $mod_path);
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
         // Creates the src folder
99 99
         GeneratorHelper::createDir($mod_path);
100 100
         // Create module path
101
-        GeneratorHelper::createDir($mod_path . $module);
101
+        GeneratorHelper::createDir($mod_path.$module);
102 102
     }
103 103
 
104 104
     /**
@@ -113,16 +113,16 @@  discard block
 block discarded – undo
113 113
         $this->log->addLog("Generamos la estructura");
114 114
         $paths = [
115 115
             "Api", "Api/base", "Config", "Controller", "Models", "Public", "Templates", "Services", "Test", "Doc",
116
-            "Locale", "Locale/" . Config::getParam('default.locale', 'es_ES'), "Locale/" . Config::getParam('default.locale', 'es_ES') . "/LC_MESSAGES"
116
+            "Locale", "Locale/".Config::getParam('default.locale', 'es_ES'), "Locale/".Config::getParam('default.locale', 'es_ES')."/LC_MESSAGES"
117 117
         ];
118
-        $module_path = $mod_path . $module;
118
+        $module_path = $mod_path.$module;
119 119
         foreach ($paths as $path) {
120
-            GeneratorHelper::createDir($module_path . DIRECTORY_SEPARATOR . $path);
120
+            GeneratorHelper::createDir($module_path.DIRECTORY_SEPARATOR.$path);
121 121
         }
122 122
         //Creamos las carpetas de los assets
123 123
         $htmlPaths = array("css", "js", "img", "media", "font");
124 124
         foreach ($htmlPaths as $path) {
125
-            GeneratorHelper::createDir($module_path . DIRECTORY_SEPARATOR . "Public" . DIRECTORY_SEPARATOR . $path);
125
+            GeneratorHelper::createDir($module_path.DIRECTORY_SEPARATOR."Public".DIRECTORY_SEPARATOR.$path);
126 126
         }
127 127
     }
128 128
 
@@ -135,7 +135,7 @@  discard block
 block discarded – undo
135 135
      */
136 136
     private function createModuleBaseFiles($module, $mod_path, $force = false, $controllerType = '')
137 137
     {
138
-        $module_path = $mod_path . $module;
138
+        $module_path = $mod_path.$module;
139 139
         $this->generateControllerTemplate($module, $module_path, $force, $controllerType);
140 140
         $this->generateServiceTemplate($module, $module_path, $force);
141 141
         $this->genereateAutoloaderTemplate($module, $module_path, $force);
@@ -153,8 +153,8 @@  discard block
 block discarded – undo
153 153
      */
154 154
     private function createModuleModels($module, $path)
155 155
     {
156
-        $module_path = $path . $module;
157
-        $module_path = str_replace(CORE_DIR . DIRECTORY_SEPARATOR, '', $module_path);
156
+        $module_path = $path.$module;
157
+        $module_path = str_replace(CORE_DIR.DIRECTORY_SEPARATOR, '', $module_path);
158 158
 
159 159
         $configGenerator = $this->getConfigGenerator($module_path);
160 160
 
@@ -164,8 +164,8 @@  discard block
 block discarded – undo
164 164
         $configTemplate = $this->tpl->dump("generator/config.propel.template.twig", array(
165 165
             "module" => $module,
166 166
         ));
167
-        $this->writeTemplateToFile($configTemplate, CORE_DIR . DIRECTORY_SEPARATOR . $module_path . DIRECTORY_SEPARATOR . "Config" .
168
-            DIRECTORY_SEPARATOR . "config.php", true);
167
+        $this->writeTemplateToFile($configTemplate, CORE_DIR.DIRECTORY_SEPARATOR.$module_path.DIRECTORY_SEPARATOR."Config".
168
+            DIRECTORY_SEPARATOR."config.php", true);
169 169
         $this->log->addLog("Generado config genérico para propel");
170 170
     }
171 171
 
@@ -187,28 +187,28 @@  discard block
 block discarded – undo
187 187
             "namespace" => preg_replace('/(\\\|\/)/', '\\', $module),
188 188
             "url" => preg_replace('/(\\\|\/)/', '/', $module),
189 189
             "class" => $class,
190
-            "controllerType" => $class . "Base",
190
+            "controllerType" => $class."Base",
191 191
             "is_base" => false
192 192
         ));
193
-        $controller = $this->writeTemplateToFile($controllerBody, $mod_path . DIRECTORY_SEPARATOR . "Controller" .
194
-            DIRECTORY_SEPARATOR . "{$class}Controller.php", $force);
193
+        $controller = $this->writeTemplateToFile($controllerBody, $mod_path.DIRECTORY_SEPARATOR."Controller".
194
+            DIRECTORY_SEPARATOR."{$class}Controller.php", $force);
195 195
 
196 196
         $controllerBody = $this->tpl->dump("generator/controller.template.twig", array(
197 197
             "module" => $module,
198 198
             "namespace" => preg_replace('/(\\\|\/)/', '\\', $module),
199 199
             "url" => preg_replace('/(\\\|\/)/', '/', $module),
200
-            "class" => $class . "Base",
200
+            "class" => $class."Base",
201 201
             "service" => $class,
202 202
             "controllerType" => $controllerType,
203 203
             "is_base" => true,
204 204
             "domain" => $class,
205 205
         ));
206
-        $controllerBase = $this->writeTemplateToFile($controllerBody, $mod_path . DIRECTORY_SEPARATOR . "Controller" .
207
-            DIRECTORY_SEPARATOR . "base" . DIRECTORY_SEPARATOR . "{$class}BaseController.php", true);
206
+        $controllerBase = $this->writeTemplateToFile($controllerBody, $mod_path.DIRECTORY_SEPARATOR."Controller".
207
+            DIRECTORY_SEPARATOR."base".DIRECTORY_SEPARATOR."{$class}BaseController.php", true);
208 208
 
209
-        $filename = $mod_path . DIRECTORY_SEPARATOR . "Test" . DIRECTORY_SEPARATOR . "{$class}Test.php";
209
+        $filename = $mod_path.DIRECTORY_SEPARATOR."Test".DIRECTORY_SEPARATOR."{$class}Test.php";
210 210
         $test = true;
211
-        if(!file_exists($filename)) {
211
+        if (!file_exists($filename)) {
212 212
             $testTemplate = $this->tpl->dump("generator/testCase.template.twig", array(
213 213
                 "module" => $module,
214 214
                 "namespace" => preg_replace('/(\\\|\/)/', '\\', $module),
@@ -229,8 +229,8 @@  discard block
 block discarded – undo
229 229
     private function generateBaseApiTemplate($module, $mod_path, $force = false, $apiClass = "")
230 230
     {
231 231
         $created = true;
232
-        $modelPath = $mod_path . $module . DIRECTORY_SEPARATOR . 'Models';
233
-        $api_path = $mod_path . $module . DIRECTORY_SEPARATOR . 'Api';
232
+        $modelPath = $mod_path.$module.DIRECTORY_SEPARATOR.'Models';
233
+        $api_path = $mod_path.$module.DIRECTORY_SEPARATOR.'Api';
234 234
         if (file_exists($modelPath)) {
235 235
             $dir = dir($modelPath);
236 236
             while ($file = $dir->read()) {
@@ -258,7 +258,7 @@  discard block
 block discarded – undo
258 258
         //Generamos el fichero de configuración
259 259
         $this->log->addLog("Generamos fichero vacío de configuración");
260 260
         return $this->writeTemplateToFile("<?php\n\t",
261
-            $mod_path . DIRECTORY_SEPARATOR . "Config" . DIRECTORY_SEPARATOR . "config.php",
261
+            $mod_path.DIRECTORY_SEPARATOR."Config".DIRECTORY_SEPARATOR."config.php",
262 262
             $force);
263 263
     }
264 264
 
@@ -273,10 +273,10 @@  discard block
 block discarded – undo
273 273
         //Generamos el fichero de configuración
274 274
         $this->log->addLog("Generamos ficheros para assets base");
275 275
         $css = $this->writeTemplateToFile("/* CSS3 STYLES */\n\n",
276
-            $mod_path . DIRECTORY_SEPARATOR . "Public" . DIRECTORY_SEPARATOR . "css" . DIRECTORY_SEPARATOR . "styles.css",
276
+            $mod_path.DIRECTORY_SEPARATOR."Public".DIRECTORY_SEPARATOR."css".DIRECTORY_SEPARATOR."styles.css",
277 277
             $force);
278 278
         $js = $this->writeTemplateToFile("/* APP MODULE JS */\n\n(function() {\n\t'use strict';\n})();",
279
-            $mod_path . DIRECTORY_SEPARATOR . "Public" . DIRECTORY_SEPARATOR . "js" . DIRECTORY_SEPARATOR . "app.js",
279
+            $mod_path.DIRECTORY_SEPARATOR."Public".DIRECTORY_SEPARATOR."js".DIRECTORY_SEPARATOR."app.js",
280 280
             $force);
281 281
         return ($css && $js);
282 282
     }
@@ -298,7 +298,7 @@  discard block
 block discarded – undo
298 298
             "class" => $class,
299 299
         ));
300 300
         return $this->writeTemplateToFile($controller,
301
-            $mod_path . DIRECTORY_SEPARATOR . "Services" . DIRECTORY_SEPARATOR . "{$class}Service.php",
301
+            $mod_path.DIRECTORY_SEPARATOR."Services".DIRECTORY_SEPARATOR."{$class}Service.php",
302 302
             $force);
303 303
     }
304 304
 
@@ -317,13 +317,13 @@  discard block
 block discarded – undo
317 317
             "autoloader" => preg_replace('/(\\\|\/)/', '_', $module),
318 318
             "regex" => preg_replace('/(\\\|\/)/m', '\\\\\\\\\\\\', $module),
319 319
         ));
320
-        $autoload = $this->writeTemplateToFile($autoloader, $mod_path . DIRECTORY_SEPARATOR . "autoload.php", $force);
320
+        $autoload = $this->writeTemplateToFile($autoloader, $mod_path.DIRECTORY_SEPARATOR."autoload.php", $force);
321 321
 
322 322
         $this->log->addLog("Generamos el phpunit");
323 323
         $phpUnitTemplate = $this->tpl->dump("generator/phpunit.template.twig", array(
324 324
             "module" => $module,
325 325
         ));
326
-        $phpunit = $this->writeTemplateToFile($phpUnitTemplate, $mod_path . DIRECTORY_SEPARATOR . "phpunit.xml.dist", $force);
326
+        $phpunit = $this->writeTemplateToFile($phpUnitTemplate, $mod_path.DIRECTORY_SEPARATOR."phpunit.xml.dist", $force);
327 327
         return $autoload && $phpunit;
328 328
     }
329 329
 
@@ -344,7 +344,7 @@  discard block
 block discarded – undo
344 344
             "db" => $this->config->get("db_name"),
345 345
         ));
346 346
         return $this->writeTemplateToFile($schema,
347
-            $mod_path . DIRECTORY_SEPARATOR . "Config" . DIRECTORY_SEPARATOR . "schema.xml",
347
+            $mod_path.DIRECTORY_SEPARATOR."Config".DIRECTORY_SEPARATOR."schema.xml",
348 348
             $force);
349 349
     }
350 350
 
@@ -362,7 +362,7 @@  discard block
 block discarded – undo
362 362
             "namespace" => preg_replace('/(\\\|\/)/', '', $module),
363 363
         ));
364 364
         return $this->writeTemplateToFile($build_properties,
365
-            $mod_path . DIRECTORY_SEPARATOR . "Config" . DIRECTORY_SEPARATOR . "propel.yml",
365
+            $mod_path.DIRECTORY_SEPARATOR."Config".DIRECTORY_SEPARATOR."propel.yml",
366 366
             $force);
367 367
     }
368 368
 
@@ -380,7 +380,7 @@  discard block
 block discarded – undo
380 380
             "module" => $module,
381 381
         ));
382 382
         return $this->writeTemplateToFile($index,
383
-            $mod_path . DIRECTORY_SEPARATOR . "Templates" . DIRECTORY_SEPARATOR . "index.html.twig",
383
+            $mod_path.DIRECTORY_SEPARATOR."Templates".DIRECTORY_SEPARATOR."index.html.twig",
384 384
             $force);
385 385
     }
386 386
 
@@ -398,11 +398,11 @@  discard block
 block discarded – undo
398 398
             try {
399 399
                 $this->cache->storeData($filename, $fileContent, Cache::TEXT, true);
400 400
                 $created = true;
401
-            } catch (\Exception $e) {
401
+            }catch (\Exception $e) {
402 402
                 Logger::log($e->getMessage(), LOG_ERR);
403 403
             }
404
-        } else {
405
-            Logger::log($filename . t(' not exists or cant write'), LOG_ERR);
404
+        }else {
405
+            Logger::log($filename.t(' not exists or cant write'), LOG_ERR);
406 406
         }
407 407
         return $created;
408 408
     }
@@ -431,7 +431,7 @@  discard block
 block discarded – undo
431 431
         ));
432 432
 
433 433
         return $this->writeTemplateToFile($controller,
434
-            $mod_path . DIRECTORY_SEPARATOR . 'base' . DIRECTORY_SEPARATOR . "{$api}BaseApi.php", true);
434
+            $mod_path.DIRECTORY_SEPARATOR.'base'.DIRECTORY_SEPARATOR."{$api}BaseApi.php", true);
435 435
     }
436 436
 
437 437
     /**
@@ -454,7 +454,7 @@  discard block
 block discarded – undo
454 454
             "class" => $class,
455 455
         ));
456 456
 
457
-        return $this->writeTemplateToFile($controller, $mod_path . DIRECTORY_SEPARATOR . "{$api}.php", $force);
457
+        return $this->writeTemplateToFile($controller, $mod_path.DIRECTORY_SEPARATOR."{$api}.php", $force);
458 458
     }
459 459
 
460 460
     /**
@@ -468,12 +468,12 @@  discard block
 block discarded – undo
468 468
     {
469 469
         if (file_exists($filename_path)) {
470 470
             $destfolder = basename($filename_path);
471
-            if (!file_exists(WEB_DIR . $dest . DIRECTORY_SEPARATOR . $destfolder) || $debug || $force) {
471
+            if (!file_exists(WEB_DIR.$dest.DIRECTORY_SEPARATOR.$destfolder) || $debug || $force) {
472 472
                 if (is_dir($filename_path)) {
473
-                    self::copyr($filename_path, WEB_DIR . $dest . DIRECTORY_SEPARATOR . $destfolder);
474
-                } else {
475
-                    if (@copy($filename_path, WEB_DIR . $dest . DIRECTORY_SEPARATOR . $destfolder) === FALSE) {
476
-                        throw new ConfigException("Can't copy " . $filename_path . " to " . WEB_DIR . $dest . DIRECTORY_SEPARATOR . $destfolder);
473
+                    self::copyr($filename_path, WEB_DIR.$dest.DIRECTORY_SEPARATOR.$destfolder);
474
+                }else {
475
+                    if (@copy($filename_path, WEB_DIR.$dest.DIRECTORY_SEPARATOR.$destfolder) === FALSE) {
476
+                        throw new ConfigException("Can't copy ".$filename_path." to ".WEB_DIR.$dest.DIRECTORY_SEPARATOR.$destfolder);
477 477
                     }
478 478
                 }
479 479
             }
@@ -492,10 +492,10 @@  discard block
 block discarded – undo
492 492
         GeneratorHelper::createDir($dst);
493 493
         while (false !== ($file = readdir($dir))) {
494 494
             if (($file != '.') && ($file != '..')) {
495
-                if (is_dir($src . '/' . $file)) {
496
-                    self::copyr($src . '/' . $file, $dst . '/' . $file);
497
-                } elseif (@copy($src . '/' . $file, $dst . '/' . $file) === false) {
498
-                    throw new ConfigException("Can't copy " . $src . " to " . $dst);
495
+                if (is_dir($src.'/'.$file)) {
496
+                    self::copyr($src.'/'.$file, $dst.'/'.$file);
497
+                } elseif (@copy($src.'/'.$file, $dst.'/'.$file) === false) {
498
+                    throw new ConfigException("Can't copy ".$src." to ".$dst);
499 499
                 }
500 500
             }
501 501
         }
@@ -508,12 +508,12 @@  discard block
 block discarded – undo
508 508
      */
509 509
     private function getPropelPaths($module_path)
510 510
     {
511
-        $moduleDir = CORE_DIR . DIRECTORY_SEPARATOR . $module_path;
511
+        $moduleDir = CORE_DIR.DIRECTORY_SEPARATOR.$module_path;
512 512
         GeneratorHelper::createDir($moduleDir);
513 513
         $moduleDir = realpath($moduleDir);
514
-        $configDir = $moduleDir . DIRECTORY_SEPARATOR . 'Config';
515
-        $sqlDir = $moduleDir . DIRECTORY_SEPARATOR . 'Config' . DIRECTORY_SEPARATOR . 'Sql';
516
-        $migrationDir = $moduleDir . DIRECTORY_SEPARATOR . 'Config' . DIRECTORY_SEPARATOR . 'Migrations';
514
+        $configDir = $moduleDir.DIRECTORY_SEPARATOR.'Config';
515
+        $sqlDir = $moduleDir.DIRECTORY_SEPARATOR.'Config'.DIRECTORY_SEPARATOR.'Sql';
516
+        $migrationDir = $moduleDir.DIRECTORY_SEPARATOR.'Config'.DIRECTORY_SEPARATOR.'Migrations';
517 517
         $paths = [
518 518
             'projectDir' => $moduleDir,
519 519
             'outputDir' => $moduleDir,
@@ -578,9 +578,9 @@  discard block
 block discarded – undo
578 578
     private function setupManager(GeneratorConfig $configGenerator, AbstractManager &$manager, $workingDir = CORE_DIR)
579 579
     {
580 580
         $manager->setGeneratorConfig($configGenerator);
581
-        $schemaFile = new \SplFileInfo($configGenerator->getSection('paths')['schemaDir'] . DIRECTORY_SEPARATOR . 'schema.xml');
581
+        $schemaFile = new \SplFileInfo($configGenerator->getSection('paths')['schemaDir'].DIRECTORY_SEPARATOR.'schema.xml');
582 582
         $manager->setSchemas([$schemaFile]);
583
-        $manager->setLoggerClosure(function ($message) {
583
+        $manager->setLoggerClosure(function($message) {
584 584
             Logger::log($message, LOG_INFO);
585 585
         });
586 586
         $manager->setWorkingDirectory($workingDir);
Please login to merge, or discard this patch.
src/base/types/helpers/InjectorHelper.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -27,10 +27,10 @@  discard block
 block discarded – undo
27 27
                 $label = self::getLabel($property->getDocComment());
28 28
                 $values = self::getValues($property->getDocComment());
29 29
                 $isArray = (bool)preg_match('/\[\]$/', $instanceType);
30
-                if($isArray) {
30
+                if ($isArray) {
31 31
                     $instanceType = str_replace('[]', '', $instanceType);
32 32
                 }
33
-                if($instanceType === '\\DateTime' || !Router::exists($instanceType)) {
33
+                if ($instanceType === '\\DateTime' || !Router::exists($instanceType)) {
34 34
                     list($type, $format) = DocumentorHelper::translateSwaggerFormats($instanceType);
35 35
                     $variables[$property->getName()] = [
36 36
                         'type' => $type,
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
                         'required' => $isRequired,
39 39
                         'description' => $label,
40 40
                     ];
41
-                } else {
41
+                }else {
42 42
                     $instance = new \ReflectionClass($instanceType);
43 43
                     $variables[$property->getName()] = [
44 44
                         'is_array' => $isArray,
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
                         'properties' => self::extractVariables($instance),
48 48
                     ];
49 49
                 }
50
-                if(!empty($values)){
50
+                if (!empty($values)) {
51 51
                     $variables[$property->getName()]['enum'] = $values;
52 52
                 }
53 53
             }
@@ -114,7 +114,7 @@  discard block
 block discarded – undo
114 114
     {
115 115
         $visible = false;
116 116
         if (false !== preg_match('/@visible\s+([^\s]+)/', $doc, $matches)) {
117
-            $visible =  count($matches) < 2 || 'false' !== strtolower($matches[1]);
117
+            $visible = count($matches) < 2 || 'false' !== strtolower($matches[1]);
118 118
         }
119 119
         return $visible;
120 120
     }
@@ -127,7 +127,7 @@  discard block
 block discarded – undo
127 127
         // Extract description
128 128
         $label = null;
129 129
         preg_match('/@label\ (.*)\n/i', $doc, $matches);
130
-        if(count($matches) > 1) {
130
+        if (count($matches) > 1) {
131 131
             $label = t($matches[1]);
132 132
         }
133 133
         return $label;
@@ -141,7 +141,7 @@  discard block
 block discarded – undo
141 141
         // Extract description
142 142
         $label = null;
143 143
         preg_match('/@values\ (.*)\n/i', $doc, $matches);
144
-        if(count($matches) > 1) {
144
+        if (count($matches) > 1) {
145 145
             $label = t($matches[1]);
146 146
         }
147 147
         return false !== strpos($label, '|') ? explode('|', $label) : $label;
@@ -154,7 +154,7 @@  discard block
 block discarded – undo
154 154
     public static function getDefaultValue($doc) {
155 155
         $default = null;
156 156
         preg_match('/@default\ (.*)\n/i', $doc, $matches);
157
-        if(count($matches) > 1) {
157
+        if (count($matches) > 1) {
158 158
             $default = $matches[1];
159 159
         }
160 160
         return $default;
@@ -169,13 +169,13 @@  discard block
 block discarded – undo
169 169
      */
170 170
     public static function constructInyectableInstance($variable, $singleton, $classNameSpace, $calledClass)
171 171
     {
172
-        Logger::log('Create inyectable instance for ' . $classNameSpace);
172
+        Logger::log('Create inyectable instance for '.$classNameSpace);
173 173
         $reflector = new \ReflectionClass($calledClass);
174 174
         $property = $reflector->getProperty($variable);
175 175
         $varInstanceType = (null === $classNameSpace) ? InjectorHelper::extractVarType($property->getDocComment()) : $classNameSpace;
176 176
         if (true === $singleton && method_exists($varInstanceType, 'getInstance')) {
177 177
             $instance = $varInstanceType::getInstance();
178
-        } else {
178
+        }else {
179 179
             $instance = new $varInstanceType();
180 180
         }
181 181
         return $instance;
@@ -189,7 +189,7 @@  discard block
 block discarded – undo
189 189
     public static function getClassProperties($class)
190 190
     {
191 191
         $properties = [];
192
-        Logger::log('Extracting annotations properties from class ' . $class);
192
+        Logger::log('Extracting annotations properties from class '.$class);
193 193
         $selfReflector = new \ReflectionClass($class);
194 194
         if (false !== $selfReflector->getParentClass()) {
195 195
             $properties = self::getClassProperties($selfReflector->getParentClass()->getName());
Please login to merge, or discard this patch.
src/base/types/helpers/DocumentorHelper.php 1 patch
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -14,9 +14,9 @@  discard block
 block discarded – undo
14 14
      */
15 15
     private static function searchPayloadParam($params, $variable) {
16 16
         $exists = false;
17
-        if(null !== $params && count($params)) {
18
-            foreach($params as $param) {
19
-                if($param['name'] === $variable) {
17
+        if (null !== $params && count($params)) {
18
+            foreach ($params as $param) {
19
+                if ($param['name'] === $variable) {
20 20
                     $exists = true;
21 21
                     break;
22 22
                 }
@@ -40,12 +40,12 @@  discard block
 block discarded – undo
40 40
         ];
41 41
         if ($endpoint['payload']['is_array']) {
42 42
             $schema['items'] = [
43
-                '$ref' => '#/definitions/' . $endpoint['payload']['type'],
43
+                '$ref' => '#/definitions/'.$endpoint['payload']['type'],
44 44
             ];
45
-        } else {
46
-            $schema['$ref'] = '#/definitions/' . $endpoint['payload']['type'];
45
+        }else {
46
+            $schema['$ref'] = '#/definitions/'.$endpoint['payload']['type'];
47 47
         }
48
-        if(!self::searchPayloadParam($paths[$url][$method]['parameters'], $endpoint['payload']['type'])) {
48
+        if (!self::searchPayloadParam($paths[$url][$method]['parameters'], $endpoint['payload']['type'])) {
49 49
             $paths[$url][$method]['parameters'][] = [
50 50
                 'in' => 'body',
51 51
                 'name' => $endpoint['payload']['type'],
@@ -74,18 +74,18 @@  discard block
 block discarded – undo
74 74
             if (array_key_exists('data', $endpoint['return']) && count(array_keys($object)) === count(array_keys($endpoint['return']['data']))) {
75 75
                 $classDefinition = [
76 76
                     'type' => 'object',
77
-                    '$ref' => '#/definitions/' . $class,
77
+                    '$ref' => '#/definitions/'.$class,
78 78
                 ];
79
-            } else {
79
+            }else {
80 80
                 $classDefinition = [
81 81
                     'type' => 'array',
82 82
                     'items' => [
83
-                        '$ref' => '#/definitions/' . $class,
83
+                        '$ref' => '#/definitions/'.$class,
84 84
                     ],
85 85
                 ];
86 86
             }
87 87
 
88
-            if($paths[$url][$method]['responses'][200]['schema']['properties']['data']['type'] === 'boolean') {
88
+            if ($paths[$url][$method]['responses'][200]['schema']['properties']['data']['type'] === 'boolean') {
89 89
                 $paths[$url][$method]['responses'][200]['schema']['properties']['data'] = $classDefinition;
90 90
             }
91 91
             $dtos += self::extractSwaggerDefinition($class, $object);
@@ -163,18 +163,18 @@  discard block
 block discarded – undo
163 163
             ],
164 164
         ];
165 165
         foreach ($fields as $field => $info) {
166
-            if(array_key_exists('type', $info) && in_array($info['type'], ['array', 'object'])) {
166
+            if (array_key_exists('type', $info) && in_array($info['type'], ['array', 'object'])) {
167 167
                 $definition[$name]['properties'][$field] = $info;
168
-            } elseif(array_key_exists('type', $info)) {
168
+            } elseif (array_key_exists('type', $info)) {
169 169
                 list($type, $format) = self::translateSwaggerFormats($info['type']);
170 170
                 $fieldData = [
171 171
                     "type" => $type,
172 172
                     "required" => $info['required'],
173 173
                 ];
174
-                if(array_key_exists('description', $info)) {
174
+                if (array_key_exists('description', $info)) {
175 175
                     $fieldData['description'] = $info['description'];
176 176
                 }
177
-                if(array_key_exists('format', $info)) {
177
+                if (array_key_exists('format', $info)) {
178 178
                     $fieldData['format'] = $info['format'];
179 179
                 }
180 180
                 $dto['properties'][$field] = $fieldData;
Please login to merge, or discard this patch.
src/base/dto/Dto.php 1 patch
Spacing   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
     public function __construct($hydrate = true)
16 16
     {
17 17
         parent::__construct();
18
-        if($hydrate) {
18
+        if ($hydrate) {
19 19
             $this->fromArray(Request::getInstance()->getData());
20 20
         }
21 21
     }
@@ -43,22 +43,22 @@  discard block
 block discarded – undo
43 43
                 /** @var \ReflectionProperty $property */
44 44
                 foreach ($properties as $property) {
45 45
                     $value = $property->getValue($this);
46
-                    if(is_object($value) && method_exists($value, 'toArray')) {
46
+                    if (is_object($value) && method_exists($value, 'toArray')) {
47 47
                         $dto[$property->getName()] = $value->toArray();
48
-                    } elseif(is_array($value)) {
49
-                        foreach($value as &$arrValue) {
50
-                            if($arrValue instanceof Dto) {
48
+                    } elseif (is_array($value)) {
49
+                        foreach ($value as &$arrValue) {
50
+                            if ($arrValue instanceof Dto) {
51 51
                                 $arrValue = $arrValue->toArray();
52 52
                             }
53 53
                         }
54 54
                         $dto[$property->getName()] = $value;
55
-                    } else {
55
+                    }else {
56 56
                         $dto[$property->getName()] = $property->getValue($this);
57 57
                     }
58 58
                 }
59 59
             }
60
-        } catch (\Exception $e) {
61
-            Logger::log(get_class($this) . ': ' . $e->getMessage(), LOG_ERR);
60
+        }catch (\Exception $e) {
61
+            Logger::log(get_class($this).': '.$e->getMessage(), LOG_ERR);
62 62
         }
63 63
         return $dto;
64 64
     }
@@ -80,32 +80,32 @@  discard block
 block discarded – undo
80 80
     protected function parseDtoField(array $properties, $key, $value = null) {
81 81
         $type = 'string';
82 82
         $is_array = false;
83
-        if(array_key_exists($key, $properties)) {
83
+        if (array_key_exists($key, $properties)) {
84 84
             $type = $properties[$key];
85
-            if(preg_match('/(\[\]|Array)/i', $type)) {
85
+            if (preg_match('/(\[\]|Array)/i', $type)) {
86 86
                 $type = preg_replace('/(\[\]|Array)/i', '', $type);
87 87
                 $is_array = true;
88 88
             }
89 89
         }
90 90
         $reflector = (class_exists($type)) ? new \ReflectionClass($type) : null;
91
-        if(null !== $reflector && $reflector->isSubclassOf(Dto::class)) {
92
-            if(null !== $value && is_array($value)) {
93
-                if($is_array) {
91
+        if (null !== $reflector && $reflector->isSubclassOf(Dto::class)) {
92
+            if (null !== $value && is_array($value)) {
93
+                if ($is_array) {
94 94
                     $this->$key = [];
95
-                    foreach($value as $data) {
96
-                        if(null !== $data && is_array($data)) {
95
+                    foreach ($value as $data) {
96
+                        if (null !== $data && is_array($data)) {
97 97
                             $dto = new $type(false);
98 98
                             $dto->fromArray($data);
99 99
                             array_push($this->$key, $dto);
100 100
                         }
101 101
                     }
102
-                } else {
102
+                }else {
103 103
                     $this->$key = new $type(false);
104 104
                     $this->$key->fromArray($value);
105 105
                 }
106 106
             }
107
-        } else {
108
-            switch($type) {
107
+        }else {
108
+            switch ($type) {
109 109
                 default:
110 110
                 case 'string':
111 111
                     $this->$key = $value;
Please login to merge, or discard this patch.
src/base/types/traits/JsonTrait.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -25,10 +25,10 @@  discard block
 block discarded – undo
25 25
      */
26 26
     public function json($response, $statusCode = 200)
27 27
     {
28
-        if(Config::getParam('profiling.enable')) {
29
-            if(is_array($response)) {
28
+        if (Config::getParam('profiling.enable')) {
29
+            if (is_array($response)) {
30 30
                 $response['profiling'] = Inspector::getStats();
31
-            } elseif($response instanceof JsonResponse) {
31
+            } elseif ($response instanceof JsonResponse) {
32 32
                 $response = ProfilingJsonResponse::createFromPrevious($response, Inspector::getStats());
33 33
             }
34 34
         }
@@ -36,17 +36,17 @@  discard block
 block discarded – undo
36 36
         $this->decodeJsonResponse($response);
37 37
 
38 38
         $mask = JSON_UNESCAPED_LINE_TERMINATORS | JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE | JSON_BIGINT_AS_STRING;
39
-        if(Config::getParam('output.json.strict_numbers')) {
39
+        if (Config::getParam('output.json.strict_numbers')) {
40 40
             $mask = JSON_UNESCAPED_LINE_TERMINATORS | JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE | JSON_BIGINT_AS_STRING | JSON_NUMERIC_CHECK;
41 41
         }
42 42
 
43 43
         $data = json_encode($response, $mask);
44
-        if(json_last_error() !== JSON_ERROR_NONE) {
44
+        if (json_last_error() !== JSON_ERROR_NONE) {
45 45
             Logger::log(json_last_error_msg(), LOG_CRIT);
46 46
         }
47 47
 
48
-        if(Config::getParam('angular.protection', false)) {
49
-            $data = ")]}',\n" . $data;
48
+        if (Config::getParam('angular.protection', false)) {
49
+            $data = ")]}',\n".$data;
50 50
         }
51 51
         $this->setStatus($statusCode);
52 52
         ResponseHelper::setDebugHeaders([]);
Please login to merge, or discard this patch.
src/base/types/helpers/ApiHelper.php 1 patch
Spacing   +38 added lines, -38 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
                             $fDto->required = true;
56 56
                             $form->addField($fDto);
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
         $fDto->entity = $relatedModel;
81 81
         $relatedField = $foreignTable->getColumn($mappedColumn->getRelatedColumnName());
82 82
         $fDto->relatedField = $relatedField->getPhpName();
83
-        $fDto->url = Router::getInstance()->getRoute(strtolower($domain) . '-api-' . $relatedModel);
83
+        $fDto->url = Router::getInstance()->getRoute(strtolower($domain).'-api-'.$relatedModel);
84 84
         return $fDto;
85 85
     }
86 86
 
@@ -187,14 +187,14 @@  discard block
 block discarded – undo
187 187
     {
188 188
         $column = null;
189 189
         try {
190
-            foreach($tableMap->getColumns() as $tableMapColumn) {
190
+            foreach ($tableMap->getColumns() as $tableMapColumn) {
191 191
                 $columnName = $tableMapColumn->getPhpName();
192
-                if(preg_match('/^'.$field.'$/i', $columnName)) {
192
+                if (preg_match('/^'.$field.'$/i', $columnName)) {
193 193
                     $column = $tableMapColumn;
194 194
                     break;
195 195
                 }
196 196
             }
197
-        } catch (\Exception $e) {
197
+        }catch (\Exception $e) {
198 198
             Logger::log($e->getMessage(), LOG_DEBUG);
199 199
         }
200 200
         return $column;
@@ -208,18 +208,18 @@  discard block
 block discarded – undo
208 208
     private static function addQueryFilter(ColumnMap $column, ModelCriteria &$query, $value = null)
209 209
     {
210 210
         $tableField = $column->getFullyQualifiedName();
211
-        if(is_array($value)) {
211
+        if (is_array($value)) {
212 212
             $query->add($tableField, $value, Criteria::IN);
213 213
         } elseif (preg_match('/^\[/', $value) && preg_match('/\]$/', $value)) {
214 214
             $query->add($tableField, explode(',', preg_replace('/(\[|\])/', '', $value)), Criteria::IN);
215 215
         } elseif (preg_match('/^(\'|\")(.*)(\'|\")$/', $value)) {
216 216
             $text = preg_replace('/(\'|\")/', '', $value);
217 217
             $text = preg_replace('/\ /', '%', $text);
218
-            $query->add($tableField, '%' . $text . '%', Criteria::LIKE);
219
-        } else {
220
-            if(null !== $column->getValueSet()) {
218
+            $query->add($tableField, '%'.$text.'%', Criteria::LIKE);
219
+        }else {
220
+            if (null !== $column->getValueSet()) {
221 221
                 $valueSet = $column->getValueSet();
222
-                if(in_array($value, $valueSet)) {
222
+                if (in_array($value, $valueSet)) {
223 223
                     $value = array_search($value, $valueSet);
224 224
                 }
225 225
             }
@@ -239,31 +239,31 @@  discard block
 block discarded – undo
239 239
         $sep = '';
240 240
         foreach ($tableMap->getColumns() as $column) {
241 241
             if ($column->isText()) {
242
-                $exp .= $sep . 'IFNULL(' . $column->getFullyQualifiedName() . ',"")';
242
+                $exp .= $sep.'IFNULL('.$column->getFullyQualifiedName().',"")';
243 243
                 $sep = ', " ", ';
244 244
             }
245 245
         }
246
-        foreach($tableMap->getRelations() as $relation) {
247
-            if(preg_match('/I18n$/i', $relation->getName())) {
246
+        foreach ($tableMap->getRelations() as $relation) {
247
+            if (preg_match('/I18n$/i', $relation->getName())) {
248 248
                 $localeTableMap = $relation->getLocalTable();
249 249
                 foreach ($localeTableMap->getColumns() as $column) {
250 250
                     if ($column->isText()) {
251
-                        $exp .= $sep . 'IFNULL(' . $column->getFullyQualifiedName() . ',"")';
251
+                        $exp .= $sep.'IFNULL('.$column->getFullyQualifiedName().',"")';
252 252
                         $sep = ', " ", ';
253 253
                     }
254 254
                 }
255 255
             }
256 256
         }
257 257
         foreach ($extraColumns as $extra => $name) {
258
-            if(!preg_match("/(COUNT|DISTINCT|SUM|MAX|MIN|GROUP)/i", $extra)) {
259
-                $exp .= $sep . $extra;
258
+            if (!preg_match("/(COUNT|DISTINCT|SUM|MAX|MIN|GROUP)/i", $extra)) {
259
+                $exp .= $sep.$extra;
260 260
                 $sep = ', " ", ';
261 261
             }
262 262
         }
263 263
         $exp .= ")";
264 264
         $text = preg_replace('/(\'|\")/', '', $value);
265 265
         $text = preg_replace('/\ /', '%', $text);
266
-        $query->where($exp . Criteria::LIKE . '"%' . $text . '%"');
266
+        $query->where($exp.Criteria::LIKE.'"%'.$text.'%"');
267 267
     }
268 268
 
269 269
     /**
@@ -288,7 +288,7 @@  discard block
 block discarded – undo
288 288
      */
289 289
     public static function extractQuery($modelNameNamespace, ConnectionInterface $con = null)
290 290
     {
291
-        $queryReflector = new \ReflectionClass($modelNameNamespace . "Query");
291
+        $queryReflector = new \ReflectionClass($modelNameNamespace."Query");
292 292
         /** @var \Propel\Runtime\ActiveQuery\ModelCriteria $query */
293 293
         $query = $queryReflector->getMethod('create')->invoke($con);
294 294
 
@@ -317,7 +317,7 @@  discard block
 block discarded – undo
317 317
         } elseif ($mappedColumn->isText()) {
318 318
             if ($mappedColumn->getSize() > 100) {
319 319
                 $fDto = self::createField($field, Field::TEXTAREA_TYPE, $required);
320
-            } else {
320
+            }else {
321 321
                 $fDto = self::generateStringField($field, $required);
322 322
             }
323 323
         } elseif ($mappedColumn->getType() === PropelTypes::BOOLEAN) {
@@ -333,7 +333,7 @@  discard block
 block discarded – undo
333 333
         } elseif (in_array($mappedColumn->getType(), [PropelTypes::ENUM, PropelTypes::SET])) {
334 334
             $fDto = self::generateEnumField($field, $required);
335 335
             foreach ($mappedColumn->getValueSet() as $value) {
336
-                switch(Config::getParam('api.field.case', TableMap::TYPE_PHPNAME)) {
336
+                switch (Config::getParam('api.field.case', TableMap::TYPE_PHPNAME)) {
337 337
                     default:
338 338
                     case TableMap::TYPE_PHPNAME:
339 339
                         $fieldName = $mappedColumn->getPhpName();
@@ -357,7 +357,7 @@  discard block
 block discarded – undo
357 357
                 $fDto->pk = true;
358 358
             }
359 359
         }
360
-        switch(Config::getParam('api.field.case', TableMap::TYPE_PHPNAME)) {
360
+        switch (Config::getParam('api.field.case', TableMap::TYPE_PHPNAME)) {
361 361
             default:
362 362
             case TableMap::TYPE_PHPNAME:
363 363
                 $fDto->name = $mappedColumn->getPhpName();
@@ -381,7 +381,7 @@  discard block
 block discarded – undo
381 381
      */
382 382
     public static function extractPrimaryKeyColumnName(TableMap $tableMap) {
383 383
         $modelPk = null;
384
-        foreach($tableMap->getPrimaryKeys() as $pk) {
384
+        foreach ($tableMap->getPrimaryKeys() as $pk) {
385 385
             $modelPk = $pk;
386 386
             break;
387 387
         }
@@ -390,15 +390,15 @@  discard block
 block discarded – undo
390 390
 
391 391
     private static function mapResult(ActiveRecordInterface $model, array $data = []) {
392 392
         $result = [];
393
-        foreach($data as $key => $value) {
393
+        foreach ($data as $key => $value) {
394 394
             try {
395 395
                 $realValue = $model->getByName($key);
396
-            } catch(\Exception $e) {
396
+            }catch (\Exception $e) {
397 397
                 $realValue = $value;
398 398
             }
399
-            if(Api::API_MODEL_KEY_FIELD === $key) {
399
+            if (Api::API_MODEL_KEY_FIELD === $key) {
400 400
                 $result[$key] = (integer)$realValue;
401
-            } else {
401
+            }else {
402 402
                 $result[$key] = $realValue;
403 403
             }
404 404
         }
@@ -415,14 +415,14 @@  discard block
 block discarded – undo
415 415
         $objTableMap = get_class($formatter->getTableMap());
416 416
         /** @var TableMapTrait $objTableMap */
417 417
         $objData = $data;
418
-        foreach($objTableMap::getFieldNames() as $field) {
419
-            if(!array_key_exists($field, $objData)) {
418
+        foreach ($objTableMap::getFieldNames() as $field) {
419
+            if (!array_key_exists($field, $objData)) {
420 420
                 $objData[$field] = null;
421 421
             }
422 422
         }
423 423
         $obj = @$formatter->getAllObjectsFromRow($objData);
424 424
         $result = self::mapResult($obj, $data);
425
-        if(!preg_match('/' . $modelPk->getPhpName() . '/i', $query[Api::API_FIELDS_RESULT_FIELD])) {
425
+        if (!preg_match('/'.$modelPk->getPhpName().'/i', $query[Api::API_FIELDS_RESULT_FIELD])) {
426 426
             unset($result[$modelPk->getPhpName()]);
427 427
         }
428 428
         return $result;
@@ -433,7 +433,7 @@  discard block
 block discarded – undo
433 433
      */
434 434
     public static function getFieldTypes() {
435 435
         $configType = Config::getParam('api.field.case');
436
-        switch($configType) {
436
+        switch ($configType) {
437 437
             default:
438 438
             case 'UpperCamelCase':
439 439
             case TableMap::TYPE_PHPNAME:
@@ -459,11 +459,11 @@  discard block
 block discarded – undo
459 459
     }
460 460
 
461 461
     public static function getColumnMapName(ColumnMap $field) {
462
-        switch(self::getFieldTypes()) {
462
+        switch (self::getFieldTypes()) {
463 463
             default:
464 464
             case 'UpperCamelCase':
465 465
             case TableMap::TYPE_PHPNAME:
466
-                $columnName =$field->getPhpName();
466
+                $columnName = $field->getPhpName();
467 467
                 break;
468 468
             case 'camelCase':
469 469
             case 'lowerCamelCase':
Please login to merge, or discard this patch.
src/base/dto/Form.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -42,10 +42,10 @@  discard block
 block discarded – undo
42 42
             $array['fields'][] = $field->__toArray();
43 43
         }
44 44
         usort($array['fields'], function($fA, $fB) {
45
-            if((bool)$fA['required'] !== (bool)$fB['required']) {
46
-                if((bool)$fa['required']) {
45
+            if ((bool)$fA['required'] !== (bool)$fB['required']) {
46
+                if ((bool)$fa['required']) {
47 47
                     return -1;
48
-                } else {
48
+                }else {
49 49
                     return 1;
50 50
                 }
51 51
             }
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
             }
57 57
             return ($aOrder < $bOrder) ? -1 : 1;
58 58
         });
59
-        foreach($this->actions as $action) {
59
+        foreach ($this->actions as $action) {
60 60
             $array['actions'][] = $action->__toArray();
61 61
         }
62 62
         return $array;
Please login to merge, or discard this patch.