Passed
Push — master ( 4b4c16...daa4b5 )
by Fran
03:09 queued 34s
created
src/base/config/ConfigForm.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -83,9 +83,9 @@
 block discarded – undo
83 83
             'class' => 'btn-warning md-default',
84 84
             'icon' => 'fa-plus',
85 85
         ];
86
-        if(Config::getParam('admin.version', 'v1') === 'v1') {
87
-            $add['onclick'] = 'javascript:addNewField(document.getElementById("' . $this->getName() . '"));';
88
-        } else {
86
+        if (Config::getParam('admin.version', 'v1') === 'v1') {
87
+            $add['onclick'] = 'javascript:addNewField(document.getElementById("'.$this->getName().'"));';
88
+        }else {
89 89
             $add['ng-click'] = 'addNewField()';
90 90
         }
91 91
         $this->addButton('submit', t('Guardar configuración'), 'submit', array(
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
@@ -74,11 +74,11 @@  discard block
 block discarded – undo
74 74
      */
75 75
     public function init()
76 76
     {
77
-        list($this->routing, $this->slugs) = $this->cache->getDataFromFile(CONFIG_DIR . DIRECTORY_SEPARATOR . 'urls.json', $this->cacheType, TRUE);
77
+        list($this->routing, $this->slugs) = $this->cache->getDataFromFile(CONFIG_DIR.DIRECTORY_SEPARATOR.'urls.json', $this->cacheType, TRUE);
78 78
         if (empty($this->routing) || Config::getParam('debug', true)) {
79 79
             $this->debugLoad();
80
-        } else {
81
-            $this->domains = $this->cache->getDataFromFile(CONFIG_DIR . DIRECTORY_SEPARATOR . 'domains.json', $this->cacheType, TRUE);
80
+        }else {
81
+            $this->domains = $this->cache->getDataFromFile(CONFIG_DIR.DIRECTORY_SEPARATOR.'domains.json', $this->cacheType, TRUE);
82 82
         }
83 83
         $this->checkExternalModules(false);
84 84
         $this->setLoaded();
@@ -116,9 +116,9 @@  discard block
 block discarded – undo
116 116
         }
117 117
 
118 118
         $notFoundRoute = Config::getParam('route.404');
119
-        if(null !== $notFoundRoute) {
119
+        if (null !== $notFoundRoute) {
120 120
             Request::getInstance()->redirect($this->getRoute($notFoundRoute, true));
121
-        } else {
121
+        }else {
122 122
             return $template->render('error.html.twig', array(
123 123
                 'exception' => $exception,
124 124
                 'trace' => $exception->getTraceAsString(),
@@ -169,12 +169,12 @@  discard block
 block discarded – undo
169 169
         try {
170 170
             //Search action and execute
171 171
             return $this->searchAction($route);
172
-        } catch (AccessDeniedException $e) {
173
-            Logger::log(t('Solicitamos credenciales de acceso a zona restringida'), LOG_WARNING, ['file' => $e->getFile() . '[' . $e->getLine() . ']']);
172
+        }catch (AccessDeniedException $e) {
173
+            Logger::log(t('Solicitamos credenciales de acceso a zona restringida'), LOG_WARNING, ['file' => $e->getFile().'['.$e->getLine().']']);
174 174
             return Admin::staticAdminLogon($route);
175
-        } catch (RouterException $r) {
175
+        }catch (RouterException $r) {
176 176
             Logger::log($r->getMessage(), LOG_WARNING);
177
-        } catch (\Exception $e) {
177
+        }catch (\Exception $e) {
178 178
             Logger::log($e->getMessage(), LOG_ERR);
179 179
             throw $e;
180 180
         }
@@ -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
                         return $this->executeCachedRoute($route, $action, $class, $get);
212
-                    } else {
212
+                    }else {
213 213
                         throw new RouterException(t('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($namespace !== 'PSFS' && method_exists($file, 'getRelativePathname')) {
336
-                    $filename = '\\' . str_replace('/', '\\', str_replace($origen, '', $file->getRelativePathname()));
337
-                } else {
335
+                if ($namespace !== 'PSFS' && method_exists($file, 'getRelativePathname')) {
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(t('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);
@@ -474,15 +474,15 @@  discard block
 block discarded – undo
474 474
      * @param string $method
475 475
      */
476 476
     private function checkPreActions($class, $method) {
477
-        $preAction = 'pre' . ucfirst($method);
478
-        if(method_exists($class, $preAction)) {
477
+        $preAction = 'pre'.ucfirst($method);
478
+        if (method_exists($class, $preAction)) {
479 479
             Logger::log(t('Pre action invoked'));
480 480
             try {
481
-                if(false === call_user_func_array([$class, $preAction])) {
481
+                if (false === call_user_func_array([$class, $preAction])) {
482 482
                     Logger::log(t('Pre action failed'), LOG_ERR, [error_get_last()]);
483 483
                     error_clear_last();
484 484
                 }
485
-            } catch (\Exception $e) {
485
+            }catch (\Exception $e) {
486 486
                 Logger::log($e->getMessage(), LOG_ERR, [$class, $method]);
487 487
             }
488 488
         }
@@ -499,7 +499,7 @@  discard block
 block discarded – undo
499 499
      */
500 500
     protected function executeCachedRoute($route, $action, $class, $params = NULL)
501 501
     {
502
-        Logger::log('Executing route ' . $route, LOG_INFO);
502
+        Logger::log('Executing route '.$route, LOG_INFO);
503 503
         $action['params'] = array_merge($action['params'], $params, Request::getInstance()->getQueryParams());
504 504
         Security::getInstance()->setSessionKey(Cache::CACHE_SESSION_VAR, $action);
505 505
         $cache = Cache::needCache();
@@ -507,9 +507,9 @@  discard block
 block discarded – undo
507 507
         $return = null;
508 508
         if (FALSE !== $cache && $action['http'] === 'GET' && Config::getParam('debug') === FALSE) {
509 509
             list($path, $cacheDataName) = $this->cache->getRequestCacheHash();
510
-            $cachedData = $this->cache->readFromCache('json' . DIRECTORY_SEPARATOR . $path . $cacheDataName, $cache);
510
+            $cachedData = $this->cache->readFromCache('json'.DIRECTORY_SEPARATOR.$path.$cacheDataName, $cache);
511 511
             if (NULL !== $cachedData) {
512
-                $headers = $this->cache->readFromCache('json' . DIRECTORY_SEPARATOR . $path . $cacheDataName . '.headers', $cache, null, Cache::JSON);
512
+                $headers = $this->cache->readFromCache('json'.DIRECTORY_SEPARATOR.$path.$cacheDataName.'.headers', $cache, null, Cache::JSON);
513 513
                 Template::getInstance()->renderCache($cachedData, $headers);
514 514
                 $execute = FALSE;
515 515
             }
@@ -554,11 +554,11 @@  discard block
 block discarded – undo
554 554
     private function loadExternalAutoloader($hydrateRoute, SplFileInfo $modulePath, $externalModulePath)
555 555
     {
556 556
         $extModule = $modulePath->getBasename();
557
-        $moduleAutoloader = realpath($externalModulePath . DIRECTORY_SEPARATOR . $extModule . DIRECTORY_SEPARATOR . 'autoload.php');
558
-        if(file_exists($moduleAutoloader)) {
557
+        $moduleAutoloader = realpath($externalModulePath.DIRECTORY_SEPARATOR.$extModule.DIRECTORY_SEPARATOR.'autoload.php');
558
+        if (file_exists($moduleAutoloader)) {
559 559
             include_once $moduleAutoloader;
560 560
             if ($hydrateRoute) {
561
-                $this->routing = $this->inspectDir($externalModulePath . DIRECTORY_SEPARATOR . $extModule, '\\' . $extModule, $this->routing);
561
+                $this->routing = $this->inspectDir($externalModulePath.DIRECTORY_SEPARATOR.$extModule, '\\'.$extModule, $this->routing);
562 562
             }
563 563
         }
564 564
     }
@@ -572,16 +572,16 @@  discard block
 block discarded – undo
572 572
     {
573 573
         try {
574 574
             $module = preg_replace('/(\\\|\/)/', DIRECTORY_SEPARATOR, $module);
575
-            $externalModulePath = VENDOR_DIR . DIRECTORY_SEPARATOR . $module . DIRECTORY_SEPARATOR . 'src';
576
-            if(file_exists($externalModulePath)) {
575
+            $externalModulePath = VENDOR_DIR.DIRECTORY_SEPARATOR.$module.DIRECTORY_SEPARATOR.'src';
576
+            if (file_exists($externalModulePath)) {
577 577
                 $externalModule = $this->finder->directories()->in($externalModulePath)->depth(0);
578
-                if($externalModule->hasResults()) {
578
+                if ($externalModule->hasResults()) {
579 579
                     foreach ($externalModule->getIterator() as $modulePath) {
580 580
                         $this->loadExternalAutoloader($hydrateRoute, $modulePath, $externalModulePath);
581 581
                     }
582 582
                 }
583 583
             }
584
-        } catch (\Exception $e) {
584
+        }catch (\Exception $e) {
585 585
             Logger::log($e->getMessage(), LOG_WARNING);
586 586
             $module = null;
587 587
         }
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...'));
@@ -306,10 +306,10 @@  discard block
 block discarded – undo
306 306
         $url = $this->getServerName();
307 307
         $protocol = $hasProtocol ? $this->getProtocol() : '';
308 308
         if (!empty($protocol)) {
309
-            $url = $protocol . $url;
309
+            $url = $protocol.$url;
310 310
         }
311 311
         if (!in_array((integer)$this->getServer('SERVER_PORT'), [80, 443], true)) {
312
-            $url .= ':' . $this->getServer('SERVER_PORT');
312
+            $url .= ':'.$this->getServer('SERVER_PORT');
313 313
         }
314 314
         return $url;
315 315
     }
Please login to merge, or discard this patch.
src/base/Cache.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
     {
55 55
         GeneratorHelper::createDir(dirname($path));
56 56
         if (false === FileHelper::writeFile($path, $data)) {
57
-            throw new ConfigException(t('No se tienen los permisos suficientes para escribir en el fichero ') . $path);
57
+            throw new ConfigException(t('No se tienen los permisos suficientes para escribir en el fichero ').$path);
58 58
         }
59 59
     }
60 60
 
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
     {
69 69
         Logger::log('Gathering data from cache', LOG_DEBUG, ['path' => $path]);
70 70
         $data = null;
71
-        $absolutePath = $absolute ? $path : CACHE_DIR . DIRECTORY_SEPARATOR . $path;
71
+        $absolutePath = $absolute ? $path : CACHE_DIR.DIRECTORY_SEPARATOR.$path;
72 72
         if (file_exists($absolutePath)) {
73 73
             $data = FileHelper::readFile($absolutePath);
74 74
         }
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
     private function hasExpiredCache($path, $expires = 300, $absolute = false)
85 85
     {
86 86
         Logger::log('Checking expiration', LOG_DEBUG, ['path' => $path]);
87
-        $absolutePath = ($absolute) ? $path : CACHE_DIR . DIRECTORY_SEPARATOR . $path;
87
+        $absolutePath = ($absolute) ? $path : CACHE_DIR.DIRECTORY_SEPARATOR.$path;
88 88
         $lasModificationDate = filemtime($absolutePath);
89 89
         return ($lasModificationDate + $expires <= time());
90 90
     }
@@ -151,7 +151,7 @@  discard block
 block discarded – undo
151 151
     {
152 152
         Logger::log('Store data in cache', LOG_DEBUG, ['path' => $path]);
153 153
         $data = self::transformData($data, $transform);
154
-        $absolutePath = $absolute ? $path : CACHE_DIR . DIRECTORY_SEPARATOR . $path;
154
+        $absolutePath = $absolute ? $path : CACHE_DIR.DIRECTORY_SEPARATOR.$path;
155 155
         $this->saveTextToFile($data, $absolutePath);
156 156
     }
157 157
 
@@ -168,11 +168,11 @@  discard block
 block discarded – undo
168 168
     {
169 169
         $data = null;
170 170
         Logger::log('Reading data from cache', LOG_DEBUG, ['path' => $path]);
171
-        if (file_exists(CACHE_DIR . DIRECTORY_SEPARATOR . $path)) {
171
+        if (file_exists(CACHE_DIR.DIRECTORY_SEPARATOR.$path)) {
172 172
             if (is_callable($function) && $this->hasExpiredCache($path, $expires)) {
173 173
                 $data = $function();
174 174
                 $this->storeData($path, $data, $transform, false, $expires);
175
-            } else {
175
+            }else {
176 176
                 $data = $this->getDataFromFile($path, $transform);
177 177
             }
178 178
         }
@@ -224,13 +224,13 @@  discard block
 block discarded – undo
224 224
     }
225 225
 
226 226
     public function flushCache() {
227
-        if(Config::getParam('cache.data.enable', false)) {
227
+        if (Config::getParam('cache.data.enable', false)) {
228 228
             Logger::log('Flushing cache', LOG_DEBUG);
229 229
             $action = Security::getInstance()->getSessionKey(self::CACHE_SESSION_VAR);
230
-            if(is_array($action)) {
231
-                $hashPath = FileHelper::generateCachePath($action, $action['params']) . '..' . DIRECTORY_SEPARATOR . ' .. ' . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR;
232
-                if(!file_exists($hashPath)) {
233
-                    $hashPath = CACHE_DIR . DIRECTORY_SEPARATOR . $hashPath;
230
+            if (is_array($action)) {
231
+                $hashPath = FileHelper::generateCachePath($action, $action['params']).'..'.DIRECTORY_SEPARATOR.' .. '.DIRECTORY_SEPARATOR.'..'.DIRECTORY_SEPARATOR;
232
+                if (!file_exists($hashPath)) {
233
+                    $hashPath = CACHE_DIR.DIRECTORY_SEPARATOR.$hashPath;
234 234
                 }
235 235
                 FileHelper::deleteDir($hashPath);
236 236
             }
Please login to merge, or discard this patch.
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/extension/CustomTranslateExtension.php 1 patch
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -27,24 +27,24 @@  discard block
 block discarded – undo
27 27
      * @param bool $use_base
28 28
      */
29 29
     protected static function checkLoad($custom_key = null, $force_reload = false, $use_base = false) {
30
-        if($force_reload) {
30
+        if ($force_reload) {
31 31
             self::dropInstance();
32 32
         }
33 33
         self::$locale = I18nHelper::extractLocale(Security::getInstance()->getSessionKey(I18nHelper::PSFS_SESSION_LANGUAGE_KEY));
34 34
         self::$generate = (boolean)Config::getParam('i18n.autogenerate', false);
35
-        if(!$use_base) {
35
+        if (!$use_base) {
36 36
             $custom_key = $custom_key ?: Security::getInstance()->getSessionKey(self::CUSTOM_LOCALE_SESSION_KEY);
37 37
         }
38
-        if(null !== $custom_key) {
39
-            Logger::log('[' . self::class . '] Custom key detected: ' . $custom_key, LOG_INFO);
40
-            self::$filename = implode(DIRECTORY_SEPARATOR, [LOCALE_DIR, 'custom', $custom_key, self::$locale . '.json']);
41
-        } else {
42
-            self::$filename = implode(DIRECTORY_SEPARATOR, [LOCALE_DIR, 'custom', self::$locale . '.json']);
38
+        if (null !== $custom_key) {
39
+            Logger::log('['.self::class.'] Custom key detected: '.$custom_key, LOG_INFO);
40
+            self::$filename = implode(DIRECTORY_SEPARATOR, [LOCALE_DIR, 'custom', $custom_key, self::$locale.'.json']);
41
+        }else {
42
+            self::$filename = implode(DIRECTORY_SEPARATOR, [LOCALE_DIR, 'custom', self::$locale.'.json']);
43 43
         }
44
-        if(file_exists(self::$filename)) {
45
-            Logger::log('[' . self::class . '] Custom locale detected: ' . $custom_key . ' [' . self::$locale . ']', LOG_INFO);
44
+        if (file_exists(self::$filename)) {
45
+            Logger::log('['.self::class.'] Custom locale detected: '.$custom_key.' ['.self::$locale.']', LOG_INFO);
46 46
             self::$translations = json_decode(file_get_contents(self::$filename), true);
47
-        } elseif(null !== $custom_key) {
47
+        } elseif (null !== $custom_key) {
48 48
             self::checkLoad(null, $force_reload, true);
49 49
         }
50 50
     }
@@ -85,12 +85,12 @@  discard block
 block discarded – undo
85 85
      */
86 86
     public static function _($message, $custom_key = null, $force_reload = false) {
87 87
         self::checkLoad($custom_key, $force_reload);
88
-        if(array_key_exists($message, self::$translations)) {
89
-            $translation =  self::$translations[$message];
90
-        } else {
88
+        if (array_key_exists($message, self::$translations)) {
89
+            $translation = self::$translations[$message];
90
+        }else {
91 91
             $translation = gettext($message);
92 92
         }
93
-        if(self::$generate) {
93
+        if (self::$generate) {
94 94
             self::generate($message, $translation);
95 95
         }
96 96
         return $translation;
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
      * @param string $translation
102 102
      */
103 103
     protected static function generate($message, $translation) {
104
-        if(!array_key_exists($message, self::$translations)) {
104
+        if (!array_key_exists($message, self::$translations)) {
105 105
             self::$translations[$message] = $translation;
106 106
         }
107 107
         file_put_contents(self::$filename, json_encode(array_unique(self::$translations), JSON_UNESCAPED_UNICODE | JSON_PRETTY_PRINT));
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.