Passed
Push — master ( 8e9e8c...5c7da6 )
by Fran
03:59
created
src/base/types/helpers/AdminHelper.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
     {
32 32
         $routes = [];
33 33
         foreach ($systemRoutes as $params) {
34
-            if(isset($params['http']) && 'GET' === $params['http'] && preg_match('/^\/admin(\/|$)/', $params['default'])) {
34
+            if (isset($params['http']) && 'GET' === $params['http'] && preg_match('/^\/admin(\/|$)/', $params['default'])) {
35 35
                 $module = strtoupper($params['module']);
36 36
                 $mode = $params['visible'] ? 'visible' : 'hidden';
37 37
                 $routes[$module][$mode][] = [
@@ -41,11 +41,11 @@  discard block
 block discarded – undo
41 41
                 ];
42 42
             }
43 43
         }
44
-        foreach($routes as $module => &$route) {
45
-            if(array_key_exists('visible', $route)) {
44
+        foreach ($routes as $module => &$route) {
45
+            if (array_key_exists('visible', $route)) {
46 46
                 uasort($route['visible'], '\PSFS\base\types\helpers\AdminHelper::sortByLabel');
47 47
             }
48
-            if(array_key_exists('hidden', $route)) {
48
+            if (array_key_exists('hidden', $route)) {
49 49
                 uasort($route['hidden'], '\PSFS\base\types\helpers\AdminHelper::sortByLabel');
50 50
             }
51 51
         }
Please login to merge, or discard this patch.
src/controller/base/Admin.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -38,10 +38,10 @@  discard block
 block discarded – undo
38 38
      */
39 39
     public static function staticAdminLogon($route = null)
40 40
     {
41
-        if (file_exists(CONFIG_DIR . DIRECTORY_SEPARATOR . 'admins.json')) {
41
+        if (file_exists(CONFIG_DIR.DIRECTORY_SEPARATOR.'admins.json')) {
42 42
             if ('login' !== Config::getParam('admin.login')) {
43 43
                 return AdminServices::getInstance()->setAdminHeaders();
44
-            } else {
44
+            }else {
45 45
                 $form = new LoginForm();
46 46
                 $form->setData(array("route" => $route));
47 47
                 $form->build();
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
                     'form' => $form,
52 52
                 ));
53 53
             }
54
-        } else {
54
+        }else {
55 55
             return UserController::showAdminManager();
56 56
         }
57 57
     }
Please login to merge, or discard this patch.
src/controller/DocumentorController.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
         $download = $this->getRequest()->get('download') ?: false;
34 34
 
35 35
         $module = $this->srv->getModules($domain);
36
-        if(empty($module)) {
36
+        if (empty($module)) {
37 37
             return Router::getInstance()->httpNotFound(null, true);
38 38
         }
39 39
         switch (strtolower($type)) {
@@ -53,10 +53,10 @@  discard block
 block discarded – undo
53 53
         ini_restore('max_execution_time');
54 54
         ini_restore('memory_limit');
55 55
 
56
-        if($download && $type === ApiController::SWAGGER_DOC) {
56
+        if ($download && $type === ApiController::SWAGGER_DOC) {
57 57
             return $this->download(json_encode($doc), 'application/json', 'swagger.json');
58 58
         }
59
-        if($type === ApiController::HTML_DOC) {
59
+        if ($type === ApiController::HTML_DOC) {
60 60
             return $this->render('documentation.html.twig', ["data" => json_encode($doc)]);
61 61
         }
62 62
         return $this->json($doc, 200);
Please login to merge, or discard this patch.
src/base/types/helpers/ResponseHelper.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
             unset($_SERVER["PHP_AUTH_USER"]);
41 41
             unset($_SERVER["PHP_AUTH_PW"]);
42 42
             header_remove("Authorization");
43
-        } elseif(!self::isTest()) {
43
+        } elseif (!self::isTest()) {
44 44
             header('Authorization:');
45 45
         }
46 46
     }
@@ -68,9 +68,9 @@  discard block
 block discarded – undo
68 68
             Logger::log('Adding debug headers to render response');
69 69
             $vars["__DEBUG__"]["includes"] = get_included_files();
70 70
             $vars["__DEBUG__"]["trace"] = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS);
71
-            header('X-PSFS-DEBUG-TS: ' . Dispatcher::getInstance()->getTs() . ' s');
72
-            header('X-PSFS-DEBUG-MEM: ' . Dispatcher::getInstance()->getMem('MBytes') . ' MBytes');
73
-            header('X-PSFS-DEBUG-FILES: ' . count(get_included_files()) . ' files opened');
71
+            header('X-PSFS-DEBUG-TS: '.Dispatcher::getInstance()->getTs().' s');
72
+            header('X-PSFS-DEBUG-MEM: '.Dispatcher::getInstance()->getMem('MBytes').' MBytes');
73
+            header('X-PSFS-DEBUG-FILES: '.count(get_included_files()).' files opened');
74 74
         }
75 75
 
76 76
         return $vars;
Please login to merge, or discard this patch.
src/base/types/helpers/SecurityHelper.php 1 patch
Spacing   +21 added lines, -21 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
             && (preg_match('/^\/(admin|setup\-admin)/i', $route) || Config::getParam('restricted', false))
34 34
         ) {
35 35
             if (!self::isTest() &&
36
-                null === Cache::getInstance()->getDataFromFile(CONFIG_DIR . DIRECTORY_SEPARATOR . 'admins.json', Cache::JSONGZ, true)) {
36
+                null === Cache::getInstance()->getDataFromFile(CONFIG_DIR.DIRECTORY_SEPARATOR.'admins.json', Cache::JSONGZ, true)) {
37 37
                 throw new AdminCredentialsException();
38 38
             }
39 39
             if (!Security::getInstance()->checkAdmin()) {
@@ -53,8 +53,8 @@  discard block
 block discarded – undo
53 53
         $token = '';
54 54
         $ct = strlen($ts);
55 55
         for ($i = 0; $i < $ct; $i++) {
56
-            $token = substr($hash, $i, 1) .
57
-                    substr($ts, $i, 1) .
56
+            $token = substr($hash, $i, 1).
57
+                    substr($ts, $i, 1).
58 58
                     $token;
59 59
         }
60 60
         return $token;
@@ -72,16 +72,16 @@  discard block
 block discarded – undo
72 72
         $charsLength = strlen(self::RAND_SEP) - 1;
73 73
         $tsLength = strlen($ts);
74 74
         $i = 0;
75
-        $ct = ceil($hashRest / 4);
76
-        $part = substr($hash, $tsLength + $ct * $i, $ct);
77
-        while(false !== $part) {
78
-            $mixedToken .= $part .
79
-                substr(self::RAND_SEP, round(rand(0, $charsLength), 0, PHP_ROUND_HALF_DOWN), 1) .
75
+        $ct = ceil($hashRest/4);
76
+        $part = substr($hash, $tsLength + $ct*$i, $ct);
77
+        while (false !== $part) {
78
+            $mixedToken .= $part.
79
+                substr(self::RAND_SEP, round(rand(0, $charsLength), 0, PHP_ROUND_HALF_DOWN), 1).
80 80
                 substr(self::RAND_SEP, round(rand(0, $charsLength), 0, PHP_ROUND_HALF_DOWN), 1);
81
-            $part = substr($hash, $tsLength + $ct * $i, $ct);
81
+            $part = substr($hash, $tsLength + $ct*$i, $ct);
82 82
             $i++;
83 83
         }
84
-        return $mixedToken . $token;
84
+        return $mixedToken.$token;
85 85
     }
86 86
 
87 87
     /**
@@ -90,10 +90,10 @@  discard block
 block discarded – undo
90 90
      */
91 91
     private static function getTs($isOdd = null) {
92 92
         $ts = time();
93
-        $tsIsOdd = (bool)((int)substr($ts, -1) % 2);
94
-        if(false === $isOdd && !$tsIsOdd) {
93
+        $tsIsOdd = (bool)((int)substr($ts, -1)%2);
94
+        if (false === $isOdd && !$tsIsOdd) {
95 95
             $ts--;
96
-        } elseif(true === $isOdd && !$tsIsOdd) {
96
+        } elseif (true === $isOdd && !$tsIsOdd) {
97 97
             $ts--;
98 98
         }
99 99
         return $ts;
@@ -125,10 +125,10 @@  discard block
 block discarded – undo
125 125
         $partToken = '';
126 126
         $ts = '';
127 127
         $part = strrev($part);
128
-        for($i = 0, $ct = strlen($part); $i < $ct; $i++) {
129
-            if($i % 2 == 0) {
128
+        for ($i = 0, $ct = strlen($part); $i < $ct; $i++) {
129
+            if ($i%2 == 0) {
130 130
                 $ts .= substr($part, $i, 1);
131
-            } else {
131
+            }else {
132 132
                 $partToken .= substr($part, $i, 1);
133 133
             }
134 134
         }
@@ -143,11 +143,11 @@  discard block
 block discarded – undo
143 143
     private static function parseTokenParts(array $parts) {
144 144
         $token = '';
145 145
         list($partToken, $ts) = self::extractTs(array_pop($parts));
146
-        if($ts > 0) {
147
-            foreach($parts as $part) {
146
+        if ($ts > 0) {
147
+            foreach ($parts as $part) {
148 148
                 $token .= $part;
149 149
             }
150
-            $token = $partToken . $token;
150
+            $token = $partToken.$token;
151 151
         }
152 152
         return [$token, $ts];
153 153
     }
@@ -175,8 +175,8 @@  discard block
 block discarded – undo
175 175
      * @return array
176 176
      */
177 177
     private static function extractTokenParts($token) {
178
-        for($i = 0, $ct = strlen(self::RAND_SEP); $i < $ct; $i++) {
179
-            $token = str_replace(substr(self::RAND_SEP,$i,1), "|", $token);
178
+        for ($i = 0, $ct = strlen(self::RAND_SEP); $i < $ct; $i++) {
179
+            $token = str_replace(substr(self::RAND_SEP, $i, 1), "|", $token);
180 180
         }
181 181
         return array_unique(explode('||', $token));
182 182
     }
Please login to merge, or discard this patch.
src/Dispatcher.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -73,18 +73,18 @@
 block discarded – undo
73 73
                 if (!Request::getInstance()->isFile()) {
74 74
                     return $this->router->execute($uri ?: $this->actualUri);
75 75
                 }
76
-            } else {
76
+            }else {
77 77
                 return ConfigController::getInstance()->config();
78 78
             }
79
-        } catch (AdminCredentialsException $a) {
79
+        }catch (AdminCredentialsException $a) {
80 80
             return UserController::showAdminManager();
81
-        } catch (SecurityException $s) {
81
+        }catch (SecurityException $s) {
82 82
             return $this->security->notAuthorized($this->actualUri);
83
-        } catch (RouterException $r) {
83
+        }catch (RouterException $r) {
84 84
             return $this->router->httpNotFound($r);
85
-        } catch(ApiException $a) {
85
+        }catch (ApiException $a) {
86 86
             return $this->router->httpNotFound($a, true);
87
-        } catch (\Exception $e) {
87
+        }catch (\Exception $e) {
88 88
             return $this->dumpException($e);
89 89
         }
90 90
     }
Please login to merge, or discard this patch.
src/controller/I18nController.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -42,8 +42,8 @@  discard block
 block discarded – undo
42 42
         //Generating the templates translations
43 43
         $translations = $this->tpl->regenerateTemplates();
44 44
 
45
-        $localePath = realpath(BASE_DIR . DIRECTORY_SEPARATOR . 'locale');
46
-        $localePath .= DIRECTORY_SEPARATOR . $locale . DIRECTORY_SEPARATOR . 'LC_MESSAGES' . DIRECTORY_SEPARATOR;
45
+        $localePath = realpath(BASE_DIR.DIRECTORY_SEPARATOR.'locale');
46
+        $localePath .= DIRECTORY_SEPARATOR.$locale.DIRECTORY_SEPARATOR.'LC_MESSAGES'.DIRECTORY_SEPARATOR;
47 47
 
48 48
         //xgettext localizations
49 49
         $translations = array_merge($translations, GeneratorService::findTranslations(SOURCE_DIR, $locale));
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
         $translations = array_merge($translations, GeneratorService::findTranslations(CACHE_DIR, $locale));
52 52
 
53 53
         $translations[] = "msgfmt {$localePath}translations.po -o {$localePath}translations.mo";
54
-        $translations[] = shell_exec('export PATH=\$PATH:/opt/local/bin:/bin:/sbin; msgfmt '. $localePath . 'translations.po -o ' . $localePath . 'translations.mo');
54
+        $translations[] = shell_exec('export PATH=\$PATH:/opt/local/bin:/bin:/sbin; msgfmt '.$localePath.'translations.po -o '.$localePath.'translations.mo');
55 55
         return $this->render('translations.html.twig', array(
56 56
             'translations' => $translations,
57 57
         ));
Please login to merge, or discard this patch.
src/services/DocumentorService.php 1 patch
Spacing   +24 added lines, -24 removed lines patch added patch discarded remove patch
@@ -56,10 +56,10 @@  discard block
 block discarded – undo
56 56
                     if ($module === $requestModule && !preg_match('/^ROOT/i', $module)) {
57 57
                         $modules = [
58 58
                             'name' => $module,
59
-                            'path' => dirname($info['base'] . DIRECTORY_SEPARATOR . '..'),
59
+                            'path' => dirname($info['base'].DIRECTORY_SEPARATOR.'..'),
60 60
                         ];
61 61
                     }
62
-                } catch (\Exception $e) {
62
+                }catch (\Exception $e) {
63 63
                     $modules[] = $e->getMessage();
64 64
                 }
65 65
             }
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
      */
78 78
     public function extractApiEndpoints(array $module)
79 79
     {
80
-        $modulePath = $module['path'] . DIRECTORY_SEPARATOR . 'Api';
80
+        $modulePath = $module['path'].DIRECTORY_SEPARATOR.'Api';
81 81
         $moduleName = $module['name'];
82 82
         $endpoints = [];
83 83
         if (file_exists($modulePath)) {
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
             if (count($finder)) {
87 87
                 /** @var \SplFileInfo $file */
88 88
                 foreach ($finder as $file) {
89
-                    $namespace = "\\{$moduleName}\\Api\\" . str_replace('.php', '', $file->getFilename());
89
+                    $namespace = "\\{$moduleName}\\Api\\".str_replace('.php', '', $file->getFilename());
90 90
                     $info = $this->extractApiInfo($namespace, $moduleName);
91 91
                     if (!empty($info)) {
92 92
                         $endpoints[$namespace] = $info;
@@ -109,14 +109,14 @@  discard block
 block discarded – undo
109 109
         if (Router::exists($namespace) && !I18nHelper::checkI18Class($namespace)) {
110 110
             $reflection = new \ReflectionClass($namespace);
111 111
             $visible = InjectorHelper::checkIsVisible($reflection->getDocComment());
112
-            if($visible) {
112
+            if ($visible) {
113 113
                 foreach ($reflection->getMethods(\ReflectionMethod::IS_PUBLIC) as $method) {
114 114
                     try {
115 115
                         $mInfo = $this->extractMethodInfo($namespace, $method, $reflection, $module);
116 116
                         if (NULL !== $mInfo) {
117 117
                             $info[] = $mInfo;
118 118
                         }
119
-                    } catch (\Exception $e) {
119
+                    }catch (\Exception $e) {
120 120
                         Logger::log($e->getMessage(), LOG_ERR);
121 121
                     }
122 122
                 }
@@ -249,7 +249,7 @@  discard block
 block discarded – undo
249 249
             $payload = $this->extractModelFields($namespace);
250 250
             $reflector = new \ReflectionClass($namespace);
251 251
             $shortName = $reflector->getShortName();
252
-        } else {
252
+        }else {
253 253
             $namespace = $model;
254 254
             $shortName = $model;
255 255
         }
@@ -338,10 +338,10 @@  discard block
 block discarded – undo
338 338
                         "required" => $field->isNotNull(),
339 339
                         'format' => $format,
340 340
                     ];
341
-                    if(count($field->getValueSet())) {
341
+                    if (count($field->getValueSet())) {
342 342
                         $info['enum'] = array_values($field->getValueSet());
343 343
                     }
344
-                    if(null !== $field->getDefaultValue()) {
344
+                    if (null !== $field->getDefaultValue()) {
345 345
                         $info['default'] = $field->getDefaultValue();
346 346
                     }
347 347
                     $payload[ApiHelper::getColumnMapName($field)] = $info;
@@ -349,7 +349,7 @@  discard block
 block discarded – undo
349 349
             } elseif (null !== $reflector && $reflector->isSubclassOf(self::DTO_INTERFACE)) {
350 350
                 $payload = $this->extractDtoProperties($namespace);
351 351
             }
352
-        } catch (\Exception $e) {
352
+        }catch (\Exception $e) {
353 353
             Logger::log($e->getMessage(), LOG_ERR);
354 354
         }
355 355
 
@@ -380,7 +380,7 @@  discard block
 block discarded – undo
380 380
                     $return = $this->extractReturn($modelNamespace, $docComments);
381 381
                     $url = array_pop($route);
382 382
                     $methodInfo = [
383
-                        'url' => str_replace('/' . $module . '/api', '', $url),
383
+                        'url' => str_replace('/'.$module.'/api', '', $url),
384 384
                         'method' => $info['http'],
385 385
                         'description' => $info['label'],
386 386
                         'return' => $return,
@@ -391,7 +391,7 @@  discard block
 block discarded – undo
391 391
                     $this->setRequestParams($method, $methodInfo, $modelNamespace, $docComments);
392 392
                     $this->setQueryParams($method, $methodInfo);
393 393
                     $this->setRequestHeaders($reflection, $methodInfo);
394
-                } catch (\Exception $e) {
394
+                }catch (\Exception $e) {
395 395
                     Logger::log($e->getMessage(), LOG_ERR);
396 396
                 }
397 397
             }
@@ -460,10 +460,10 @@  discard block
 block discarded – undo
460 460
         $formatted = [
461 461
             "swagger" => "2.0",
462 462
             "host" => preg_replace('/^(http|https)\:\/\/(.*)\/$/i', '$2', Router::getInstance()->getRoute('', true)),
463
-            "basePath" => '/' . $module['name'] . '/api',
463
+            "basePath" => '/'.$module['name'].'/api',
464 464
             "schemes" => [Request::getInstance()->getServer('HTTPS') === 'on' ? 'https' : 'http'],
465 465
             "info" => [
466
-                "title" => t('Documentación API módulo ') . $module['name'],
466
+                "title" => t('Documentación API módulo ').$module['name'],
467 467
                 "version" => Config::getParam('api.version', '1.0.0'),
468 468
                 "contact" => [
469 469
                     "name" => Config::getParam("author", "Fran López"),
@@ -476,7 +476,7 @@  discard block
 block discarded – undo
476 476
         foreach ($endpoints as $model) {
477 477
             foreach ($model as $endpoint) {
478 478
                 if (!preg_match('/^\/(admin|api)\//i', $endpoint['url']) && strlen($endpoint['url'])) {
479
-                    $url = preg_replace('/\/' . $module['name'] . '\/api/i', '', $endpoint['url']);
479
+                    $url = preg_replace('/\/'.$module['name'].'\/api/i', '', $endpoint['url']);
480 480
                     $description = $endpoint['description'];
481 481
                     $method = strtolower($endpoint['method']);
482 482
                     $paths[$url][$method] = [
@@ -537,7 +537,7 @@  discard block
 block discarded – undo
537 537
     protected function extractDtoName($dto, $isArray = false)
538 538
     {
539 539
         $dto = explode('\\', $dto);
540
-        $modelDto = array_pop($dto) . "Dto";
540
+        $modelDto = array_pop($dto)."Dto";
541 541
         if ($isArray) {
542 542
             $modelDto .= "List";
543 543
         }
@@ -587,10 +587,10 @@  discard block
 block discarded – undo
587 587
     {
588 588
 
589 589
         $methodInfo['headers'] = [];
590
-        foreach($reflection->getProperties() as $property) {
590
+        foreach ($reflection->getProperties() as $property) {
591 591
             $doc = $property->getDocComment();
592 592
             preg_match('/@header\ (.*)\n/i', $doc, $headers);
593
-            if(count($headers)) {
593
+            if (count($headers)) {
594 594
                 $header = [
595 595
                     "name" => $headers[1],
596 596
                     "in" => "header",
@@ -635,7 +635,7 @@  discard block
 block discarded – undo
635 635
             foreach ($method->getParameters() as $parameter) {
636 636
                 $parameterName = $parameter->getName();
637 637
                 $types = [];
638
-                preg_match_all('/\@param\ (.*)\ \$' . $parameterName . '$/im', $docComments, $types);
638
+                preg_match_all('/\@param\ (.*)\ \$'.$parameterName.'$/im', $docComments, $types);
639 639
                 if (count($types) > 1 && count($types[1]) > 0) {
640 640
                     $methodInfo['parameters'][$parameterName] = $types[1][0];
641 641
                 }
@@ -657,21 +657,21 @@  discard block
 block discarded – undo
657 657
                     $modelDto['objects'][$dtoName][$param] = [
658 658
                         'type' => 'array',
659 659
                         'items' => [
660
-                            '$ref' => '#/definitions/' . $info['type'],
660
+                            '$ref' => '#/definitions/'.$info['type'],
661 661
                         ]
662 662
                     ];
663
-                } else {
663
+                }else {
664 664
                     $modelDto['objects'][$dtoName][$param] = [
665 665
                         'type' => 'object',
666
-                        '$ref' => '#/definitions/' . $info['type'],
666
+                        '$ref' => '#/definitions/'.$info['type'],
667 667
                     ];
668 668
                 }
669 669
                 $modelDto['objects'][$info['class']] = $info['properties'];
670 670
                 $paramDto = $this->checkDtoAttributes($info['properties'], $info['properties'], $info['class']);
671
-                if(array_key_exists('objects', $paramDto)) {
671
+                if (array_key_exists('objects', $paramDto)) {
672 672
                     $modelDto['objects'] = array_merge($modelDto['objects'], $paramDto['objects']);
673 673
                 }
674
-            } else {
674
+            }else {
675 675
                 $modelDto['objects'][$dtoName][$param] = $info;
676 676
             }
677 677
         }
Please login to merge, or discard this patch.
src/base/Singleton.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
      */
23 23
     public function __construct()
24 24
     {
25
-        Logger::log(static::class . ' constructor invoked');
25
+        Logger::log(static::class.' constructor invoked');
26 26
         $this->init();
27 27
     }
28 28
 
@@ -81,14 +81,14 @@  discard block
 block discarded – undo
81 81
         $calledClass = static::class;
82 82
         try {
83 83
             $instance = InjectorHelper::constructInyectableInstance($variable, $singleton, $classNameSpace, $calledClass);
84
-            $setter = 'set' . ucfirst($variable);
84
+            $setter = 'set'.ucfirst($variable);
85 85
             if (method_exists($calledClass, $setter)) {
86 86
                 $this->$setter($instance);
87
-            } else {
87
+            }else {
88 88
                 $this->$variable = $instance;
89 89
             }
90
-        } catch (\Exception $e) {
91
-            Logger::log($e->getMessage() . ': ' . $e->getFile() . ' [' . $e->getLine() . ']', LOG_ERR);
90
+        }catch (\Exception $e) {
91
+            Logger::log($e->getMessage().': '.$e->getFile().' ['.$e->getLine().']', LOG_ERR);
92 92
             throw $e;
93 93
         }
94 94
         return $this;
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
     {
104 104
         if (!$this->isLoaded()) {
105 105
             $filename = sha1(get_class($this));
106
-            $cacheFilename = 'reflections' . DIRECTORY_SEPARATOR . substr($filename, 0, 2) . DIRECTORY_SEPARATOR . substr($filename, 2, 2) . DIRECTORY_SEPARATOR . $filename . '.json';
106
+            $cacheFilename = 'reflections'.DIRECTORY_SEPARATOR.substr($filename, 0, 2).DIRECTORY_SEPARATOR.substr($filename, 2, 2).DIRECTORY_SEPARATOR.$filename.'.json';
107 107
             /** @var \PSFS\base\Cache $cacheService */
108 108
             $cacheService = Cache::getInstance();
109 109
             /** @var \PSFS\base\config\Config $configService */
@@ -121,8 +121,8 @@  discard block
 block discarded – undo
121 121
                 }
122 122
             }
123 123
             $this->setLoaded();
124
-        } else {
125
-            Logger::log(get_class($this) . ' already loaded', LOG_INFO);
124
+        }else {
125
+            Logger::log(get_class($this).' already loaded', LOG_INFO);
126 126
         }
127 127
     }
128 128
 }
Please login to merge, or discard this patch.