Passed
Push — master ( 87c6b6...f17d15 )
by Fran
02:49
created
src/functions.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -34,9 +34,10 @@
 block discarded – undo
34 34
     function getallheaders()
35 35
     {
36 36
         $headers = [];
37
-        foreach ($_SERVER as $h => $v)
38
-            if (preg_match('/HTTP_(.+)/', $h, $hp)) {
37
+        foreach ($_SERVER as $h => $v) {
38
+                    if (preg_match('/HTTP_(.+)/', $h, $hp)) {
39 39
                 $headers[$hp[1]] = $v;
40
+        }
40 41
             }
41 42
         return $headers;
42 43
     }
Please login to merge, or discard this patch.
src/services/AdminServices.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
     {
34 34
         $platform = trim(Config::getInstance()->get('platform.name'));
35 35
         header('HTTP/1.1 401 Unauthorized');
36
-        header('WWW-Authenticate: Basic Realm="' . $platform . '"');
36
+        header('WWW-Authenticate: Basic Realm="'.$platform.'"');
37 37
         echo t('Zona restringida');
38 38
         exit();
39 39
     }
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
                             $admin['class'] = 'primary';
76 76
                             break;
77 77
                     }
78
-                } else {
78
+                }else {
79 79
                     $admin['class'] = 'primary';
80 80
                 }
81 81
             }
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
         $logs = array();
94 94
         /** @var \SplFileInfo $file */
95 95
         foreach ($files as $file) {
96
-            $size = $file->getSize() / 8 / 1024;
96
+            $size = $file->getSize()/8/1024;
97 97
             $time = date('c', $file->getMTime());
98 98
             $dateTime = new \DateTime($time);
99 99
             if (!isset($logs[$dateTime->format('Y')])) {
@@ -122,7 +122,7 @@  discard block
 block discarded – undo
122 122
         $files->files()->in(LOG_DIR)->name($selectedLog);
123 123
         $file = null;
124 124
         $log = array();
125
-        foreach($files as $match) {
125
+        foreach ($files as $match) {
126 126
             $file = $match;
127 127
             break;
128 128
         }
@@ -131,7 +131,7 @@  discard block
 block discarded – undo
131 131
             $time = date('c', $file->getMTime());
132 132
             $dateTime = new \DateTime($time);
133 133
             $monthOpen = $dateTime->format('m');
134
-            $content = file($file->getPath() . DIRECTORY_SEPARATOR . $file->getFilename());
134
+            $content = file($file->getPath().DIRECTORY_SEPARATOR.$file->getFilename());
135 135
             krsort($content);
136 136
             $detailLog = array();
137 137
             foreach ($content as &$line) {
@@ -189,7 +189,7 @@  discard block
 block discarded – undo
189 189
                     break;
190 190
             }
191 191
 
192
-        } catch (\Exception $e) {
192
+        }catch (\Exception $e) {
193 193
             $detail = [
194 194
                 'type' => 'danger',
195 195
             ];
Please login to merge, or discard this patch.
src/base/Request.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -145,7 +145,7 @@  discard block
 block discarded – undo
145 145
      */
146 146
     public static function header($name, $default = null)
147 147
     {
148
-        return self::getInstance()->getHeader($name,  $default);
148
+        return self::getInstance()->getHeader($name, $default);
149 149
     }
150 150
 
151 151
     /**
@@ -158,10 +158,10 @@  discard block
 block discarded – undo
158 158
         $header = null;
159 159
         if ($this->hasHeader($name)) {
160 160
             $header = $this->header[$name];
161
-        } else if(array_key_exists('h_' . strtolower($name), $this->query)) {
162
-            $header = $this->query['h_' . strtolower($name)];
163
-        } else if(array_key_exists('HTTP_' . strtoupper(str_replace('-', '_', $name)), $this->server)) {
164
-            $header = $this->server['HTTP_' . strtoupper(str_replace('-', '_', $name))];
161
+        }else if (array_key_exists('h_'.strtolower($name), $this->query)) {
162
+            $header = $this->query['h_'.strtolower($name)];
163
+        }else if (array_key_exists('HTTP_'.strtoupper(str_replace('-', '_', $name)), $this->server)) {
164
+            $header = $this->server['HTTP_'.strtoupper(str_replace('-', '_', $name))];
165 165
         }
166 166
         return $header ?: $default;
167 167
     }
@@ -260,7 +260,7 @@  discard block
 block discarded – undo
260 260
             $url = $this->getServer('HTTP_ORIGIN');
261 261
         }
262 262
         ob_start();
263
-        header('Location: ' . $url);
263
+        header('Location: '.$url);
264 264
         ob_end_clean();
265 265
         Security::getInstance()->updateSession();
266 266
         exit(t('Redireccionando...'));
@@ -305,10 +305,10 @@  discard block
 block discarded – undo
305 305
         $url = $this->getServerName();
306 306
         $protocol = $hasProtocol ? $this->getProtocol() : '';
307 307
         if (!empty($protocol)) {
308
-            $url = $protocol . $url;
308
+            $url = $protocol.$url;
309 309
         }
310 310
         if (!in_array($this->getServer('SERVER_PORT'), [80, 443], true)) {
311
-            $url .= ':' . $this->getServer('SERVER_PORT');
311
+            $url .= ':'.$this->getServer('SERVER_PORT');
312 312
         }
313 313
         return $url;
314 314
     }
Please login to merge, or discard this patch.
src/base/extension/TemplateFunctions.php 2 patches
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -39,13 +39,13 @@  discard block
 block discarded – undo
39 39
 
40 40
         $filePath = '';
41 41
         if (!file_exists($filePath)) {
42
-            $filePath = BASE_DIR . $string;
42
+            $filePath = BASE_DIR.$string;
43 43
         }
44 44
         $filenamePath = AssetsParser::findDomainPath($string, $filePath);
45 45
 
46 46
         $filePath = self::processAsset($string, $name, $return, $filenamePath);
47 47
         $basePath = Config::getParam('resources.cdn.url', Request::getInstance()->getRootUrl());
48
-        $returnPath = empty($name) ? $basePath . '/' . $filePath : $name;
48
+        $returnPath = empty($name) ? $basePath.'/'.$filePath : $name;
49 49
         return $return ? $returnPath : '';
50 50
     }
51 51
 
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
         $router = Router::getInstance();
63 63
         try {
64 64
             return $router->getRoute($path, $absolute, $params);
65
-        } catch (\Exception $e) {
65
+        }catch (\Exception $e) {
66 66
             return $router->getRoute('', $absolute, $params);
67 67
         }
68 68
     }
@@ -205,9 +205,9 @@  discard block
 block discarded – undo
205 205
     {
206 206
         $data = file_get_contents($filenamePath);
207 207
         if (!empty($name)) {
208
-            file_put_contents(WEB_DIR . DIRECTORY_SEPARATOR . $name, $data);
208
+            file_put_contents(WEB_DIR.DIRECTORY_SEPARATOR.$name, $data);
209 209
         }else {
210
-            file_put_contents($base . $filePath, $data);
210
+            file_put_contents($base.$filePath, $data);
211 211
         }
212 212
     }
213 213
 
@@ -226,9 +226,9 @@  discard block
 block discarded – undo
226 226
         if (file_exists($filenamePath)) {
227 227
             list($base, $htmlBase, $filePath) = AssetsParser::calculateAssetPath($string, $name, $return, $filenamePath);
228 228
             //Creamos el directorio si no existe
229
-            GeneratorHelper::createDir($base . $htmlBase);
229
+            GeneratorHelper::createDir($base.$htmlBase);
230 230
             //Si se ha modificado
231
-            if (!file_exists($base . $filePath) || filemtime($base . $filePath) < filemtime($filenamePath)) {
231
+            if (!file_exists($base.$filePath) || filemtime($base.$filePath) < filemtime($filenamePath)) {
232 232
                 if ($htmlBase === 'css') {
233 233
                     self::processCssLines($filenamePath);
234 234
                 }
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -206,7 +206,7 @@
 block discarded – undo
206 206
         $data = file_get_contents($filenamePath);
207 207
         if (!empty($name)) {
208 208
             file_put_contents(WEB_DIR . DIRECTORY_SEPARATOR . $name, $data);
209
-        }else {
209
+        } else {
210 210
             file_put_contents($base . $filePath, $data);
211 211
         }
212 212
     }
Please login to merge, or discard this patch.
src/base/Router.php 1 patch
Spacing   +49 added lines, -49 removed lines patch added patch discarded remove patch
@@ -75,11 +75,11 @@  discard block
 block discarded – undo
75 75
      */
76 76
     public function init()
77 77
     {
78
-        list($this->routing, $this->slugs) = $this->cache->getDataFromFile(CONFIG_DIR . DIRECTORY_SEPARATOR . 'urls.json', $this->cacheType, TRUE);
78
+        list($this->routing, $this->slugs) = $this->cache->getDataFromFile(CONFIG_DIR.DIRECTORY_SEPARATOR.'urls.json', $this->cacheType, TRUE);
79 79
         if (empty($this->routing) || Config::getInstance()->getDebugMode()) {
80 80
             $this->debugLoad();
81
-        } else {
82
-            $this->domains = $this->cache->getDataFromFile(CONFIG_DIR . DIRECTORY_SEPARATOR . 'domains.json', $this->cacheType, TRUE);
81
+        }else {
82
+            $this->domains = $this->cache->getDataFromFile(CONFIG_DIR.DIRECTORY_SEPARATOR.'domains.json', $this->cacheType, TRUE);
83 83
         }
84 84
         $this->checkExternalModules(false);
85 85
         $this->setLoaded();
@@ -117,9 +117,9 @@  discard block
 block discarded – undo
117 117
         }
118 118
 
119 119
         $not_found_route = Config::getParam('route.404');
120
-        if(null !== $not_found_route) {
120
+        if (null !== $not_found_route) {
121 121
             Request::getInstance()->redirect($this->getRoute($not_found_route, true));
122
-        } else {
122
+        }else {
123 123
             return $template->render('error.html.twig', array(
124 124
                 'exception' => $e,
125 125
                 'trace' => $e->getTraceAsString(),
@@ -170,12 +170,12 @@  discard block
 block discarded – undo
170 170
         try {
171 171
             //Search action and execute
172 172
             $this->searchAction($route);
173
-        } catch (AccessDeniedException $e) {
174
-            Logger::log(_('Solicitamos credenciales de acceso a zona restringida'), LOG_WARNING, ['file' => $e->getFile() . '[' . $e->getLine() . ']']);
173
+        }catch (AccessDeniedException $e) {
174
+            Logger::log(_('Solicitamos credenciales de acceso a zona restringida'), LOG_WARNING, ['file' => $e->getFile().'['.$e->getLine().']']);
175 175
             return Admin::staticAdminLogon($route);
176
-        } catch (RouterException $r) {
176
+        }catch (RouterException $r) {
177 177
             Logger::log($r->getMessage(), LOG_WARNING);
178
-        } catch (\Exception $e) {
178
+        }catch (\Exception $e) {
179 179
             Logger::log($e->getMessage(), LOG_ERR);
180 180
             throw $e;
181 181
         }
@@ -192,7 +192,7 @@  discard block
 block discarded – undo
192 192
      */
193 193
     protected function searchAction($route)
194 194
     {
195
-        Logger::log('Searching action to execute: ' . $route, LOG_INFO);
195
+        Logger::log('Searching action to execute: '.$route, LOG_INFO);
196 196
         //Revisamos si tenemos la ruta registrada
197 197
         $parts = parse_url($route);
198 198
         $path = array_key_exists('path', $parts) ? $parts['path'] : $route;
@@ -207,12 +207,12 @@  discard block
 block discarded – undo
207 207
                 /** @var $class \PSFS\base\types\Controller */
208 208
                 $class = RouterHelper::getClassToCall($action);
209 209
                 try {
210
-                    if($this->checkRequirements($action, $get)) {
210
+                    if ($this->checkRequirements($action, $get)) {
211 211
                         $this->executeCachedRoute($route, $action, $class, $get);
212
-                    } else {
212
+                    }else {
213 213
                         throw new RouterException(_('La ruta no es válida'), 400);
214 214
                     }
215
-                } catch (\Exception $e) {
215
+                }catch (\Exception $e) {
216 216
                     Logger::log($e->getMessage(), LOG_ERR);
217 217
                     throw $e;
218 218
                 }
@@ -227,15 +227,15 @@  discard block
 block discarded – undo
227 227
      * @return bool
228 228
      */
229 229
     private function checkRequirements(array $action, $params = []) {
230
-        if(!empty($params) && !empty($action['requirements'])) {
230
+        if (!empty($params) && !empty($action['requirements'])) {
231 231
             $checked = 0;
232
-            foreach(array_keys($params) as $key) {
233
-                if(in_array($key, $action['requirements'], true)) {
232
+            foreach (array_keys($params) as $key) {
233
+                if (in_array($key, $action['requirements'], true)) {
234 234
                     $checked++;
235 235
                 }
236 236
             }
237 237
             $valid = count($action['requirements']) === $checked;
238
-        } else {
238
+        }else {
239 239
             $valid = true;
240 240
         }
241 241
         return $valid;
@@ -285,14 +285,14 @@  discard block
 block discarded – undo
285 285
         $this->checkExternalModules();
286 286
         if (file_exists($modulesPath)) {
287 287
             $modules = $this->finder->directories()->in($modulesPath)->depth(0);
288
-            if($modules->hasResults()) {
288
+            if ($modules->hasResults()) {
289 289
                 foreach ($modules->getIterator() as $modulePath) {
290 290
                     $module = $modulePath->getBasename();
291
-                    $this->routing = $this->inspectDir($modulesPath . DIRECTORY_SEPARATOR . $module, $module, $this->routing);
291
+                    $this->routing = $this->inspectDir($modulesPath.DIRECTORY_SEPARATOR.$module, $module, $this->routing);
292 292
                 }
293 293
             }
294 294
         }
295
-        $this->cache->storeData(CONFIG_DIR . DIRECTORY_SEPARATOR . 'domains.json', $this->domains, Cache::JSON, TRUE);
295
+        $this->cache->storeData(CONFIG_DIR.DIRECTORY_SEPARATOR.'domains.json', $this->domains, Cache::JSON, TRUE);
296 296
     }
297 297
 
298 298
     /**
@@ -308,7 +308,7 @@  discard block
 block discarded – undo
308 308
             $home_params = NULL;
309 309
             foreach ($this->routing as $pattern => $params) {
310 310
                 list($method, $route) = RouterHelper::extractHttpRoute($pattern);
311
-                if (preg_match('/' . preg_quote($route, '/') . '$/i', '/' . $home)) {
311
+                if (preg_match('/'.preg_quote($route, '/').'$/i', '/'.$home)) {
312 312
                     $home_params = $params;
313 313
                 }
314 314
                 unset($method);
@@ -330,14 +330,14 @@  discard block
 block discarded – undo
330 330
     private function inspectDir($origen, $namespace = 'PSFS', $routing = [])
331 331
     {
332 332
         $files = $this->finder->files()->in($origen)->path('/(controller|api)/i')->depth(1)->name('*.php');
333
-        if($files->hasResults()) {
333
+        if ($files->hasResults()) {
334 334
             foreach ($files->getIterator() as $file) {
335
-                if(method_exists($file, 'getRelativePathname') && $namespace !== 'PSFS') {
336
-                    $filename = '\\' . str_replace('/', '\\', str_replace($origen, '', $file->getRelativePathname()));
337
-                } else {
335
+                if (method_exists($file, 'getRelativePathname') && $namespace !== 'PSFS') {
336
+                    $filename = '\\'.str_replace('/', '\\', str_replace($origen, '', $file->getRelativePathname()));
337
+                }else {
338 338
                     $filename = str_replace('/', '\\', str_replace($origen, '', $file->getPathname()));
339 339
                 }
340
-                $routing = $this->addRouting($namespace . str_replace('.php', '', $filename), $routing, $namespace);
340
+                $routing = $this->addRouting($namespace.str_replace('.php', '', $filename), $routing, $namespace);
341 341
             }
342 342
         }
343 343
         $this->finder = new Finder();
@@ -366,7 +366,7 @@  discard block
 block discarded – undo
366 366
     private function addRouting($namespace, &$routing, $module = 'PSFS')
367 367
     {
368 368
         if (self::exists($namespace)) {
369
-            if(I18nHelper::checkI18Class($namespace)) {
369
+            if (I18nHelper::checkI18Class($namespace)) {
370 370
                 return $routing;
371 371
             }
372 372
             $reflection = new \ReflectionClass($namespace);
@@ -408,7 +408,7 @@  discard block
 block discarded – undo
408 408
             if (!$this->domains) {
409 409
                 $this->domains = [];
410 410
             }
411
-            $domain = '@' . $class->getConstant('DOMAIN') . '/';
411
+            $domain = '@'.$class->getConstant('DOMAIN').'/';
412 412
             if (!array_key_exists($domain, $this->domains)) {
413 413
                 $this->domains[$domain] = RouterHelper::extractDomainInfo($class, $domain);
414 414
             }
@@ -424,11 +424,11 @@  discard block
 block discarded – undo
424 424
      */
425 425
     public function simpatize()
426 426
     {
427
-        $translationFileName = 'translations' . DIRECTORY_SEPARATOR . 'routes_translations.php';
428
-        $absoluteTranslationFileName = CACHE_DIR . DIRECTORY_SEPARATOR . $translationFileName;
427
+        $translationFileName = 'translations'.DIRECTORY_SEPARATOR.'routes_translations.php';
428
+        $absoluteTranslationFileName = CACHE_DIR.DIRECTORY_SEPARATOR.$translationFileName;
429 429
         $this->generateSlugs($absoluteTranslationFileName);
430 430
         GeneratorHelper::createDir(CONFIG_DIR);
431
-        Cache::getInstance()->storeData(CONFIG_DIR . DIRECTORY_SEPARATOR . 'urls.json', array($this->routing, $this->slugs), Cache::JSON, TRUE);
431
+        Cache::getInstance()->storeData(CONFIG_DIR.DIRECTORY_SEPARATOR.'urls.json', array($this->routing, $this->slugs), Cache::JSON, TRUE);
432 432
 
433 433
         return $this;
434 434
     }
@@ -444,18 +444,18 @@  discard block
 block discarded – undo
444 444
     public function getRoute($slug = '', $absolute = FALSE, array $params = [])
445 445
     {
446 446
         if ('' === $slug) {
447
-            return $absolute ? Request::getInstance()->getRootUrl() . '/' : '/';
447
+            return $absolute ? Request::getInstance()->getRootUrl().'/' : '/';
448 448
         }
449 449
         if (!is_array($this->slugs) || !array_key_exists($slug, $this->slugs)) {
450 450
             throw new RouterException(_('No existe la ruta especificada'));
451 451
         }
452
-        $url = $absolute ? Request::getInstance()->getRootUrl() . $this->slugs[$slug] : $this->slugs[$slug];
452
+        $url = $absolute ? Request::getInstance()->getRootUrl().$this->slugs[$slug] : $this->slugs[$slug];
453 453
         if (!empty($params)) {
454 454
             foreach ($params as $key => $value) {
455
-                $url = str_replace('{' . $key . '}', $value, $url);
455
+                $url = str_replace('{'.$key.'}', $value, $url);
456 456
             }
457 457
         } elseif (!empty($this->routing[$this->slugs[$slug]]['default'])) {
458
-            $url = $absolute ? Request::getInstance()->getRootUrl() . $this->routing[$this->slugs[$slug]]['default'] : $this->routing[$this->slugs[$slug]]['default'];
458
+            $url = $absolute ? Request::getInstance()->getRootUrl().$this->routing[$this->slugs[$slug]]['default'] : $this->routing[$this->slugs[$slug]]['default'];
459 459
         }
460 460
 
461 461
         return preg_replace('/(GET|POST|PUT|DELETE|ALL)\#\|\#/', '', $url);
@@ -492,15 +492,15 @@  discard block
 block discarded – undo
492 492
      * @param string $method
493 493
      */
494 494
     private function checkPreActions($class, $method) {
495
-        $preAction = 'pre' . ucfirst($method);
496
-        if(method_exists($class, $preAction)) {
495
+        $preAction = 'pre'.ucfirst($method);
496
+        if (method_exists($class, $preAction)) {
497 497
             Logger::log(_('Pre action invoked'));
498 498
             try {
499
-                if(false === call_user_func_array([$class, $preAction])) {
499
+                if (false === call_user_func_array([$class, $preAction])) {
500 500
                     Logger::log(_('Pre action failed'), LOG_ERR, [error_get_last()]);
501 501
                     error_clear_last();
502 502
                 }
503
-            } catch (\Exception $e) {
503
+            }catch (\Exception $e) {
504 504
                 Logger::log($e->getMessage(), LOG_ERR, [$class, $method]);
505 505
             }
506 506
         }
@@ -516,16 +516,16 @@  discard block
 block discarded – undo
516 516
      */
517 517
     protected function executeCachedRoute($route, $action, $class, $params = NULL)
518 518
     {
519
-        Logger::log('Executing route ' . $route, LOG_INFO);
519
+        Logger::log('Executing route '.$route, LOG_INFO);
520 520
         $action['params'] = array_merge($action['params'], $params, Request::getInstance()->getQueryParams());
521 521
         Security::getInstance()->setSessionKey(Cache::CACHE_SESSION_VAR, $action);
522 522
         $cache = Cache::needCache();
523 523
         $execute = TRUE;
524 524
         if (FALSE !== $cache && $action['http'] === 'GET' && Config::getParam('debug') === FALSE) {
525 525
             list($path, $cacheDataName) = $this->cache->getRequestCacheHash();
526
-            $cachedData = $this->cache->readFromCache('json' . DIRECTORY_SEPARATOR . $path . $cacheDataName, $cache);
526
+            $cachedData = $this->cache->readFromCache('json'.DIRECTORY_SEPARATOR.$path.$cacheDataName, $cache);
527 527
             if (NULL !== $cachedData) {
528
-                $headers = $this->cache->readFromCache('json' . DIRECTORY_SEPARATOR . $path . $cacheDataName . '.headers', $cache, null, Cache::JSON);
528
+                $headers = $this->cache->readFromCache('json'.DIRECTORY_SEPARATOR.$path.$cacheDataName.'.headers', $cache, null, Cache::JSON);
529 529
                 Template::getInstance()->renderCache($cachedData, $headers);
530 530
                 $execute = FALSE;
531 531
             }
@@ -568,11 +568,11 @@  discard block
 block discarded – undo
568 568
     private function loadExternalAutoloader($hydrateRoute, SplFileInfo $modulePath, $externalModulePath)
569 569
     {
570 570
         $extModule = $modulePath->getBasename();
571
-        $moduleAutoloader = realpath($externalModulePath . DIRECTORY_SEPARATOR . $extModule . DIRECTORY_SEPARATOR . 'autoload.php');
572
-        if(file_exists($moduleAutoloader)) {
571
+        $moduleAutoloader = realpath($externalModulePath.DIRECTORY_SEPARATOR.$extModule.DIRECTORY_SEPARATOR.'autoload.php');
572
+        if (file_exists($moduleAutoloader)) {
573 573
             include_once $moduleAutoloader;
574 574
             if ($hydrateRoute) {
575
-                $this->routing = $this->inspectDir($externalModulePath . DIRECTORY_SEPARATOR . $extModule, '\\' . $extModule, $this->routing);
575
+                $this->routing = $this->inspectDir($externalModulePath.DIRECTORY_SEPARATOR.$extModule, '\\'.$extModule, $this->routing);
576 576
             }
577 577
         }
578 578
     }
@@ -586,16 +586,16 @@  discard block
 block discarded – undo
586 586
     {
587 587
         try {
588 588
             $module = preg_replace('/(\\\|\/)/', DIRECTORY_SEPARATOR, $module);
589
-            $externalModulePath = VENDOR_DIR . DIRECTORY_SEPARATOR . $module . DIRECTORY_SEPARATOR . 'src';
590
-            if(file_exists($externalModulePath)) {
589
+            $externalModulePath = VENDOR_DIR.DIRECTORY_SEPARATOR.$module.DIRECTORY_SEPARATOR.'src';
590
+            if (file_exists($externalModulePath)) {
591 591
                 $externalModule = $this->finder->directories()->in($externalModulePath)->depth(0);
592
-                if($externalModule->hasResults()) {
592
+                if ($externalModule->hasResults()) {
593 593
                     foreach ($externalModule->getIterator() as $modulePath) {
594 594
                         $this->loadExternalAutoloader($hydrateRoute, $modulePath, $externalModulePath);
595 595
                     }
596 596
                 }
597 597
             }
598
-        } catch (\Exception $e) {
598
+        }catch (\Exception $e) {
599 599
             Logger::log($e->getMessage(), LOG_WARNING);
600 600
             $module = null;
601 601
         }
Please login to merge, or discard this patch.
src/base/types/helpers/RouterHelper.php 1 patch
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -19,11 +19,11 @@  discard block
 block discarded – undo
19 19
     public static function getClassToCall(array $action)
20 20
     {
21 21
         Logger::log('Getting class to call for executing the request action', LOG_DEBUG, $action);
22
-        $actionClass = class_exists($action['class']) ? $action['class'] : "\\" . $action['class'];
22
+        $actionClass = class_exists($action['class']) ? $action['class'] : "\\".$action['class'];
23 23
         $reflectionClass = new \ReflectionClass($actionClass);
24
-        if($reflectionClass->hasMethod('getInstance')) {
24
+        if ($reflectionClass->hasMethod('getInstance')) {
25 25
             $class = $reflectionClass->getMethod('getInstance')->invoke(null, $action['method']);
26
-        } else {
26
+        }else {
27 27
             $class = new $actionClass;
28 28
         }
29 29
         return $class;
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
         $expr = preg_quote($expr, '/');
113 113
         $expr = str_replace('###', '(.*)', $expr);
114 114
         $expr2 = preg_replace('/\(\.\*\)$/', '', $expr);
115
-        $matched = preg_match('/^' . $expr . '\/?$/i', $path) || preg_match('/^' . $expr2 . '?$/i', $path);
115
+        $matched = preg_match('/^'.$expr.'\/?$/i', $path) || preg_match('/^'.$expr2.'?$/i', $path);
116 116
         return $matched;
117 117
     }
118 118
 
@@ -123,8 +123,8 @@  discard block
 block discarded – undo
123 123
      */
124 124
     public static function extractDomainInfo(\ReflectionClass $class, $domain)
125 125
     {
126
-        $path = dirname($class->getFileName()) . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR;
127
-        $path = realpath($path) . DIRECTORY_SEPARATOR;
126
+        $path = dirname($class->getFileName()).DIRECTORY_SEPARATOR.'..'.DIRECTORY_SEPARATOR;
127
+        $path = realpath($path).DIRECTORY_SEPARATOR;
128 128
         $templatesPath = 'templates';
129 129
         $publicPath = 'public';
130 130
         $modelsPath = 'models';
@@ -134,13 +134,13 @@  discard block
 block discarded – undo
134 134
             $modelsPath = ucfirst($modelsPath);
135 135
         }
136 136
         if ($class->hasConstant('TPL')) {
137
-            $templatesPath .= DIRECTORY_SEPARATOR . $class->getConstant('TPL');
137
+            $templatesPath .= DIRECTORY_SEPARATOR.$class->getConstant('TPL');
138 138
         }
139 139
         return [
140 140
             'base' => $path,
141
-            'template' => $path . $templatesPath,
142
-            'model' => $path . $modelsPath,
143
-            'public' => $path . $publicPath,
141
+            'template' => $path.$templatesPath,
142
+            'model' => $path.$modelsPath,
143
+            'public' => $path.$publicPath,
144 144
         ];
145 145
     }
146 146
 
@@ -164,12 +164,12 @@  discard block
 block discarded – undo
164 164
             foreach ($parameters as $param) {
165 165
                 if ($param->isOptional() && !is_array($param->getDefaultValue())) {
166 166
                     $params[$param->getName()] = $param->getDefaultValue();
167
-                    $default = str_replace('{' . $param->getName() . '}', $param->getDefaultValue(), $regex);
168
-                } elseif(!$param->isOptional()) {
167
+                    $default = str_replace('{'.$param->getName().'}', $param->getDefaultValue(), $regex);
168
+                } elseif (!$param->isOptional()) {
169 169
                     $requirements[] = $param->getName();
170 170
                 }
171 171
             }
172
-        } else {
172
+        }else {
173 173
             $default = $regex;
174 174
         }
175 175
 
@@ -251,7 +251,7 @@  discard block
 block discarded – undo
251 251
             $default = str_replace('{__DOMAIN__}', $module, $default);
252 252
             $httpMethod = self::extractReflectionHttpMethod($docComments);
253 253
             $label = self::extractReflectionLabel(str_replace('{__API__}', $api, $docComments));
254
-            $route = $httpMethod . "#|#" . $regex;
254
+            $route = $httpMethod."#|#".$regex;
255 255
             $route = preg_replace('/(\\r|\\f|\\t|\\n)/', '', $route);
256 256
             $info = [
257 257
                 'method' => $method->getName(),
Please login to merge, or discard this patch.
src/base/types/helpers/RequestHelper.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -45,10 +45,10 @@  discard block
 block discarded – undo
45 45
                 if (!headers_sent()) {
46 46
                     // TODO include this headers in Template class output method
47 47
                     header('Access-Control-Allow-Credentials: true');
48
-                    header('Access-Control-Allow-Origin: ' . Request::getInstance()->getServer('HTTP_ORIGIN', '*'));
48
+                    header('Access-Control-Allow-Origin: '.Request::getInstance()->getServer('HTTP_ORIGIN', '*'));
49 49
                     header('Vary: Origin');
50 50
                     header('Access-Control-Allow-Methods: GET, POST, DELETE, PUT, PATCH, OPTIONS');
51
-                    header('Access-Control-Allow-Headers: ' . implode(', ', self::getCorsHeaders()));
51
+                    header('Access-Control-Allow-Headers: '.implode(', ', self::getCorsHeaders()));
52 52
                 }
53 53
                 if (Request::getInstance()->getMethod() === Request::VERB_OPTIONS) {
54 54
                     Logger::log('Returning OPTIONS header confirmation for CORS pre flight requests', LOG_DEBUG);
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
                         return $ip;
79 79
                     }
80 80
                 }
81
-            } else {
81
+            }else {
82 82
                 if (self::validateIpAddress($_SERVER['HTTP_X_FORWARDED_FOR'])) {
83 83
                     return $_SERVER['HTTP_X_FORWARDED_FOR'];
84 84
                 }
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/base/types/traits/Api/ApiTrait.php 1 patch
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -96,15 +96,15 @@  discard block
 block discarded – undo
96 96
     protected function hydrateBulkRequest() {
97 97
         $class = new \ReflectionClass($this->getModelNamespace());
98 98
         $this->list = [];
99
-        foreach($this->data as $item) {
100
-            if(is_array($item)) {
101
-                if(count($this->list) < Config::getParam('api.block.limit', 1000)) {
99
+        foreach ($this->data as $item) {
100
+            if (is_array($item)) {
101
+                if (count($this->list) < Config::getParam('api.block.limit', 1000)) {
102 102
                     /** @var ActiveRecordInterface $model */
103 103
                     $model = $class->newInstance();
104 104
                     $this->hydrateModelFromRequest($model, $item);
105 105
                     $this->list[] = $model;
106
-                } else {
107
-                    Logger::log(t('Max items per bulk insert raised'), LOG_WARNING, count($this->data) . t('items'));
106
+                }else {
107
+                    Logger::log(t('Max items per bulk insert raised'), LOG_WARNING, count($this->data).t('items'));
108 108
                 }
109 109
             }
110 110
         }
@@ -115,12 +115,12 @@  discard block
 block discarded – undo
115 115
      */
116 116
     protected function saveBulk() {
117 117
         $tablemap = $this->getTableMap();
118
-        foreach($this->list as &$model) {
118
+        foreach ($this->list as &$model) {
119 119
             $con = Propel::getWriteConnection($tablemap::DATABASE_NAME);
120 120
             try {
121 121
                 $model->save($con);
122 122
                 $con->commit();
123
-            } catch(\Exception $e) {
123
+            }catch (\Exception $e) {
124 124
                 Logger::log($e->getMessage(), LOG_ERR, $model->toArray());
125 125
                 $con->rollBack();
126 126
             }
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
     protected function exportList() {
134 134
         $list = [];
135 135
         /** @var ActiveRecordInterface $item */
136
-        foreach($this->list as $item) {
136
+        foreach ($this->list as $item) {
137 137
             $list[] = $item->toArray();
138 138
         }
139 139
         return $list;
@@ -157,18 +157,18 @@  discard block
 block discarded – undo
157 157
      */
158 158
     protected function findPk(ModelCriteria $query, $primaryKey) {
159 159
         $pks = explode(Api::API_PK_SEPARATOR, urldecode($primaryKey));
160
-        if(count($pks) === 1 && !empty($pks[0])) {
160
+        if (count($pks) === 1 && !empty($pks[0])) {
161 161
             $query->filterByPrimaryKey($pks[0]);
162
-        } else {
162
+        }else {
163 163
             $item = 0;
164
-            foreach($this->getPkDbName() as $phpName) {
164
+            foreach ($this->getPkDbName() as $phpName) {
165 165
                 try {
166 166
                     $query->filterBy($phpName, $pks[$item]);
167 167
                     $item++;
168
-                    if($item >= count($pks)) {
168
+                    if ($item >= count($pks)) {
169 169
                         break;
170 170
                     }
171
-                } catch(\Exception $e) {
171
+                }catch (\Exception $e) {
172 172
                     Logger::log($e->getMessage(), LOG_DEBUG);
173 173
                 }
174 174
             }
@@ -198,8 +198,8 @@  discard block
 block discarded – undo
198 198
         try {
199 199
             $query = $this->prepareQuery();
200 200
             $this->model = $this->findPk($query, $primaryKey);
201
-        } catch (\Exception $e) {
202
-            Logger::log(get_class($this) . ': ' . $e->getMessage(), LOG_ERR);
201
+        }catch (\Exception $e) {
202
+            Logger::log(get_class($this).': '.$e->getMessage(), LOG_ERR);
203 203
         }
204 204
     }
205 205
 
Please login to merge, or discard this patch.