Test Failed
Push — master ( 1b7368...050678 )
by Fran
25:16 queued 22:49
created
src/base/Router.php 1 patch
Spacing   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -62,8 +62,8 @@  discard block
 block discarded – undo
62 62
      */
63 63
     public function init()
64 64
     {
65
-        list($this->routing, $this->slugs) = $this->cache->getDataFromFile(CONFIG_DIR . DIRECTORY_SEPARATOR . 'urls.json', $this->cacheType, TRUE);
66
-        $this->domains = $this->cache->getDataFromFile(CONFIG_DIR . DIRECTORY_SEPARATOR . 'domains.json', $this->cacheType, TRUE);
65
+        list($this->routing, $this->slugs) = $this->cache->getDataFromFile(CONFIG_DIR.DIRECTORY_SEPARATOR.'urls.json', $this->cacheType, TRUE);
66
+        $this->domains = $this->cache->getDataFromFile(CONFIG_DIR.DIRECTORY_SEPARATOR.'domains.json', $this->cacheType, TRUE);
67 67
         if (empty($this->routing) || Config::getParam('debug', true)) {
68 68
             $this->debugLoad();
69 69
         }
@@ -98,13 +98,13 @@  discard block
 block discarded – undo
98 98
         try {
99 99
             //Search action and execute
100 100
             return $this->searchAction($route);
101
-        } catch (AccessDeniedException $e) {
102
-            Logger::log(t('Solicitamos credenciales de acceso a zona restringida'), LOG_WARNING, ['file' => $e->getFile() . '[' . $e->getLine() . ']']);
101
+        }catch (AccessDeniedException $e) {
102
+            Logger::log(t('Solicitamos credenciales de acceso a zona restringida'), LOG_WARNING, ['file' => $e->getFile().'['.$e->getLine().']']);
103 103
             return Admin::staticAdminLogon();
104
-        } catch (RouterException $r) {
104
+        }catch (RouterException $r) {
105 105
             Logger::log($r->getMessage(), LOG_WARNING);
106 106
             $code = $r->getCode();
107
-        } catch (Exception $e) {
107
+        }catch (Exception $e) {
108 108
             Logger::log($e->getMessage(), LOG_ERR);
109 109
             throw $e;
110 110
         }
@@ -122,7 +122,7 @@  discard block
 block discarded – undo
122 122
      */
123 123
     protected function searchAction($route)
124 124
     {
125
-        Inspector::stats('[Router] Searching action to execute: ' . $route, Inspector::SCOPE_DEBUG);
125
+        Inspector::stats('[Router] Searching action to execute: '.$route, Inspector::SCOPE_DEBUG);
126 126
         //Revisamos si tenemos la ruta registrada
127 127
         $parts = parse_url($route);
128 128
         $path = array_key_exists('path', $parts) ? $parts['path'] : $route;
@@ -142,7 +142,7 @@  discard block
 block discarded – undo
142 142
                     }
143 143
 
144 144
                     throw new RouterException(t('Preconditions failed'), 412);
145
-                } catch (Exception $e) {
145
+                }catch (Exception $e) {
146 146
                     Logger::log($e->getMessage(), LOG_ERR);
147 147
                     throw $e;
148 148
                 }
@@ -167,7 +167,7 @@  discard block
 block discarded – undo
167 167
                 }
168 168
             }
169 169
             $valid = count($action['requirements']) === $checked;
170
-        } else {
170
+        }else {
171 171
             $valid = true;
172 172
         }
173 173
         return $valid;
@@ -190,11 +190,11 @@  discard block
 block discarded – undo
190 190
             if ($modules->hasResults()) {
191 191
                 foreach ($modules->getIterator() as $modulePath) {
192 192
                     $module = $modulePath->getBasename();
193
-                    $this->routing = $this->inspectDir($modulesPath . DIRECTORY_SEPARATOR . $module, $module, $this->routing);
193
+                    $this->routing = $this->inspectDir($modulesPath.DIRECTORY_SEPARATOR.$module, $module, $this->routing);
194 194
                 }
195 195
             }
196 196
         }
197
-        $this->cache->storeData(CONFIG_DIR . DIRECTORY_SEPARATOR . 'domains.json', $this->domains, Cache::JSON, TRUE);
197
+        $this->cache->storeData(CONFIG_DIR.DIRECTORY_SEPARATOR.'domains.json', $this->domains, Cache::JSON, TRUE);
198 198
     }
199 199
 
200 200
     /**
@@ -211,7 +211,7 @@  discard block
 block discarded – undo
211 211
             $homeParams = NULL;
212 212
             foreach ($this->routing as $pattern => $params) {
213 213
                 list($method, $route) = RouterHelper::extractHttpRoute($pattern);
214
-                if (preg_match('/' . preg_quote($route, '/') . '$/i', '/' . $home)) {
214
+                if (preg_match('/'.preg_quote($route, '/').'$/i', '/'.$home)) {
215 215
                     $homeParams = $params;
216 216
                 }
217 217
                 unset($method);
@@ -243,18 +243,18 @@  discard block
 block discarded – undo
243 243
     {
244 244
         $baseUrl = $absolute ? Request::getInstance()->getRootUrl() : '';
245 245
         if ('' === $slug) {
246
-            return $baseUrl . '/';
246
+            return $baseUrl.'/';
247 247
         }
248 248
         if (!is_array($this->slugs) || !array_key_exists($slug, $this->slugs)) {
249 249
             throw new RouterException(t('No existe la ruta especificada'));
250 250
         }
251
-        $url = $baseUrl . $this->slugs[$slug];
251
+        $url = $baseUrl.$this->slugs[$slug];
252 252
         if (!empty($params)) {
253 253
             foreach ($params as $key => $value) {
254
-                $url = str_replace('{' . $key . '}', $value, $url);
254
+                $url = str_replace('{'.$key.'}', $value, $url);
255 255
             }
256 256
         } elseif (!empty($this->routing[$this->slugs[$slug]]['default'])) {
257
-            $url = $baseUrl . $this->routing[$this->slugs[$slug]]['default'];
257
+            $url = $baseUrl.$this->routing[$this->slugs[$slug]]['default'];
258 258
         }
259 259
 
260 260
         return preg_replace('/(GET|POST|PUT|DELETE|ALL|HEAD|PATCH)\#\|\#/', '', $url);
@@ -266,7 +266,7 @@  discard block
 block discarded – undo
266 266
      */
267 267
     private function checkPreActions($class, $method)
268 268
     {
269
-        $preAction = 'pre' . ucfirst($method);
269
+        $preAction = 'pre'.ucfirst($method);
270 270
         if (method_exists($class, $preAction)) {
271 271
             Inspector::stats('[Router] Pre action invoked', Inspector::SCOPE_DEBUG);
272 272
             try {
@@ -274,7 +274,7 @@  discard block
 block discarded – undo
274 274
                     Logger::log(t('Pre action failed'), LOG_ERR, [error_get_last()]);
275 275
                     error_clear_last();
276 276
                 }
277
-            } catch (Exception $e) {
277
+            }catch (Exception $e) {
278 278
                 Logger::log($e->getMessage(), LOG_ERR, [$class, $method]);
279 279
             }
280 280
         }
@@ -291,7 +291,7 @@  discard block
 block discarded – undo
291 291
      */
292 292
     protected function executeCachedRoute($route, $action, $class, $params = NULL)
293 293
     {
294
-        Inspector::stats('[Router] Executing route ' . $route, Inspector::SCOPE_DEBUG);
294
+        Inspector::stats('[Router] Executing route '.$route, Inspector::SCOPE_DEBUG);
295 295
         $action['params'] = array_merge($action['params'], $params, Request::getInstance()->getQueryParams());
296 296
         Security::getInstance()->setSessionKey(Cache::CACHE_SESSION_VAR, $action);
297 297
         $cache = Cache::needCache();
@@ -299,15 +299,15 @@  discard block
 block discarded – undo
299 299
         $return = null;
300 300
         if (FALSE !== $cache && $action['http'] === 'GET' && Config::getParam('debug') === FALSE) {
301 301
             list($path, $cacheDataName) = $this->cache->getRequestCacheHash();
302
-            $cachedData = $this->cache->readFromCache('json' . DIRECTORY_SEPARATOR . $path . $cacheDataName, $cache);
302
+            $cachedData = $this->cache->readFromCache('json'.DIRECTORY_SEPARATOR.$path.$cacheDataName, $cache);
303 303
             if (NULL !== $cachedData) {
304
-                $headers = $this->cache->readFromCache('json' . DIRECTORY_SEPARATOR . $path . $cacheDataName . '.headers', $cache, null, Cache::JSON);
304
+                $headers = $this->cache->readFromCache('json'.DIRECTORY_SEPARATOR.$path.$cacheDataName.'.headers', $cache, null, Cache::JSON);
305 305
                 Template::getInstance()->renderCache($cachedData, $headers);
306 306
                 $execute = FALSE;
307 307
             }
308 308
         }
309 309
         if ($execute) {
310
-            Inspector::stats('[Router] Start executing action ' . $route, Inspector::SCOPE_DEBUG);
310
+            Inspector::stats('[Router] Start executing action '.$route, Inspector::SCOPE_DEBUG);
311 311
             $this->checkPreActions($class, $action['method']);
312 312
             $return = call_user_func_array([$class, $action['method']], $params);
313 313
             if (false === $return) {
Please login to merge, or discard this patch.
src/base/Logger.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -18,8 +18,8 @@  discard block
 block discarded – undo
18 18
 
19 19
 
20 20
 if (!defined('LOG_DIR')) {
21
-    GeneratorHelper::createDir(BASE_DIR . DIRECTORY_SEPARATOR . 'logs');
22
-    define('LOG_DIR', BASE_DIR . DIRECTORY_SEPARATOR . 'logs');
21
+    GeneratorHelper::createDir(BASE_DIR.DIRECTORY_SEPARATOR.'logs');
22
+    define('LOG_DIR', BASE_DIR.DIRECTORY_SEPARATOR.'logs');
23 23
 }
24 24
 
25 25
 /**
@@ -57,10 +57,10 @@  discard block
 block discarded – undo
57 57
     {
58 58
         $args = func_get_args();
59 59
         list($logger, $debug, $path) = $this->setup($args);
60
-        $this->stream = fopen($path . DIRECTORY_SEPARATOR . date('Ymd') . '.log', 'ab+');
60
+        $this->stream = fopen($path.DIRECTORY_SEPARATOR.date('Ymd').'.log', 'ab+');
61 61
         if (false !== $this->stream && is_resource($this->stream)) {
62 62
             $this->addPushLogger($logger, $debug);
63
-        } else {
63
+        }else {
64 64
             throw new ConfigException(t('Error creating logger'));
65 65
         }
66 66
         $this->logLevel = strtoupper(Config::getParam('log.level', 'NOTICE'));
@@ -141,7 +141,7 @@  discard block
 block discarded – undo
141 141
     private function createLoggerPath()
142 142
     {
143 143
         $logger = $this->setLoggerName();
144
-        $path = Config::getParam('default.log.path',LOG_DIR) . DIRECTORY_SEPARATOR . $logger . DIRECTORY_SEPARATOR . date('Y') . DIRECTORY_SEPARATOR . date('m');
144
+        $path = Config::getParam('default.log.path', LOG_DIR).DIRECTORY_SEPARATOR.$logger.DIRECTORY_SEPARATOR.date('Y').DIRECTORY_SEPARATOR.date('m');
145 145
         GeneratorHelper::createDir($path);
146 146
         return $path;
147 147
     }
Please login to merge, or discard this patch.
src/base/dto/Dto.php 1 patch
Spacing   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
     public function __construct($hydrate = true)
20 20
     {
21 21
         parent::__construct();
22
-        if($hydrate) {
22
+        if ($hydrate) {
23 23
             $this->fromArray(Request::getInstance()->getData());
24 24
         }
25 25
     }
@@ -47,23 +47,23 @@  discard block
 block discarded – undo
47 47
                 /** @var \ReflectionProperty $property */
48 48
                 foreach ($properties as $property) {
49 49
                     $value = $property->getValue($this);
50
-                    if(is_object($value) && method_exists($value, 'toArray')) {
50
+                    if (is_object($value) && method_exists($value, 'toArray')) {
51 51
                         $dto[$property->getName()] = $value->toArray();
52
-                    } elseif(is_array($value)) {
53
-                        foreach($value as &$arrValue) {
54
-                            if($arrValue instanceof Dto) {
52
+                    } elseif (is_array($value)) {
53
+                        foreach ($value as &$arrValue) {
54
+                            if ($arrValue instanceof Dto) {
55 55
                                 $arrValue = $arrValue->toArray();
56 56
                             }
57 57
                         }
58 58
                         $dto[$property->getName()] = $value;
59
-                    } else {
59
+                    }else {
60 60
                         $type = InjectorHelper::extractVarType($property->getDocComment());
61 61
                         $dto[$property->getName()] = $this->checkCastedValue($property->getValue($this), $type);
62 62
                     }
63 63
                 }
64 64
             }
65
-        } catch (\Exception $e) {
66
-            Logger::log(get_class($this) . ': ' . $e->getMessage(), LOG_ERR);
65
+        }catch (\Exception $e) {
66
+            Logger::log(get_class($this).': '.$e->getMessage(), LOG_ERR);
67 67
         }
68 68
         return $dto;
69 69
     }
@@ -86,26 +86,26 @@  discard block
 block discarded – undo
86 86
     protected function parseDtoField(array $properties, $key, $value = null) {
87 87
         list($type, $isArray) = $this->extractTypes($properties, $key);
88 88
         $reflector = (class_exists($type)) ? new \ReflectionClass($type) : null;
89
-        if(null !== $reflector && $reflector->isSubclassOf(Dto::class)) {
90
-            if(null !== $value && is_array($value)) {
91
-                if(!array_key_exists($type, $this->__cache)) {
89
+        if (null !== $reflector && $reflector->isSubclassOf(Dto::class)) {
90
+            if (null !== $value && is_array($value)) {
91
+                if (!array_key_exists($type, $this->__cache)) {
92 92
                     $this->__cache[$type] = new $type(false);
93 93
                 }
94
-                if($isArray) {
94
+                if ($isArray) {
95 95
                     $this->$key = [];
96
-                    foreach($value as $data) {
97
-                        if(null !== $data && is_array($data)) {
96
+                    foreach ($value as $data) {
97
+                        if (null !== $data && is_array($data)) {
98 98
                             $dto = clone $this->__cache[$type];
99 99
                             $dto->fromArray($data);
100 100
                             array_push($this->$key, $dto);
101 101
                         }
102 102
                     }
103
-                } else {
103
+                }else {
104 104
                     $this->$key = clone $this->__cache[$type];
105 105
                     $this->$key->fromArray($value);
106 106
                 }
107 107
             }
108
-        } else {
108
+        }else {
109 109
             $this->castValue($key, $value, $type);
110 110
         }
111 111
     }
@@ -172,7 +172,7 @@  discard block
 block discarded – undo
172 172
      * @return mixed
173 173
      */
174 174
     protected function checkCastedValue($rawValue, $type) {
175
-        if(null !== $rawValue) {
175
+        if (null !== $rawValue) {
176 176
             switch ($type) {
177 177
                 default:
178 178
                 case 'string':
@@ -191,7 +191,7 @@  discard block
 block discarded – undo
191 191
                     $value = (bool)$rawValue;
192 192
                     break;
193 193
             }
194
-        } else {
194
+        }else {
195 195
             $value = $rawValue;
196 196
         }
197 197
         return $value;
Please login to merge, or discard this patch.
src/base/extension/AssetsNode.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -34,20 +34,20 @@
 block discarded – undo
34 34
         $scripts = $this->getNode("scripts");
35 35
 
36 36
         //Creamos el parser
37
-        $compiler->addDebugInfo($scripts)->write('$parser = new \\PSFS\\base\\extension\\AssetsParser(\'' . $this->type . '\')')
37
+        $compiler->addDebugInfo($scripts)->write('$parser = new \\PSFS\\base\\extension\\AssetsParser(\''.$this->type.'\')')
38 38
             ->raw(";\n");
39 39
 
40 40
         //Asociamos el hash
41
-        $compiler->write('$parser->setHash(\'' . $this->hash . '\')')
41
+        $compiler->write('$parser->setHash(\''.$this->hash.'\')')
42 42
             ->raw(";\n");
43 43
 
44 44
         //Inicializamos SRI
45
-        $compiler->write('$parser->init(\'' . $this->type . '\')')
45
+        $compiler->write('$parser->init(\''.$this->type.'\')')
46 46
             ->raw(";\n");
47 47
 
48 48
         //Asociamos los ficheros
49 49
         foreach ($scripts->getAttribute("value") as $value) {
50
-            $compiler->write('$parser->addFile(\'' . $value . '\')')->raw(";\n");
50
+            $compiler->write('$parser->addFile(\''.$value.'\')')->raw(";\n");
51 51
         }
52 52
 
53 53
         //Procesamos los ficheros
Please login to merge, or discard this patch.
src/base/extension/AssetsParser.php 1 patch
Spacing   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -13,8 +13,8 @@  discard block
 block discarded – undo
13 13
 use PSFS\base\types\helpers\GeneratorHelper;
14 14
 use PSFS\base\types\helpers\Inspector;
15 15
 
16
-defined('CSS_SRI_FILENAME') or define('CSS_SRI_FILENAME', CACHE_DIR . DIRECTORY_SEPARATOR . 'css.sri.json');
17
-defined('JS_SRI_FILENAME') or define('JS_SRI_FILENAME', CACHE_DIR . DIRECTORY_SEPARATOR . 'js.sri.json');
16
+defined('CSS_SRI_FILENAME') or define('CSS_SRI_FILENAME', CACHE_DIR.DIRECTORY_SEPARATOR.'css.sri.json');
17
+defined('JS_SRI_FILENAME') or define('JS_SRI_FILENAME', CACHE_DIR.DIRECTORY_SEPARATOR.'js.sri.json');
18 18
 /**
19 19
  * Class AssetsParser
20 20
  * @package PSFS\base\extension
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
         /** @var Cache $cache */
67 67
         $cache = Cache::getInstance();
68 68
         $this->sri = $cache->getDataFromFile($this->sriFilename, Cache::JSON, true);
69
-        if(empty($this->sri)) {
69
+        if (empty($this->sri)) {
70 70
             $this->sri = [];
71 71
         }
72 72
     }
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
     public function __construct($type = 'js')
80 80
     {
81 81
         $this->type = $type;
82
-        $this->path = WEB_DIR . DIRECTORY_SEPARATOR;
82
+        $this->path = WEB_DIR.DIRECTORY_SEPARATOR;
83 83
         $this->domains = Template::getDomains(true);
84 84
         $this->cdnPath = Config::getParam('resources.cdn.url', Request::getInstance()->getRootUrl());
85 85
     }
@@ -92,12 +92,12 @@  discard block
 block discarded – undo
92 92
      */
93 93
     public function addFile($filename)
94 94
     {
95
-        if (file_exists($this->path . $filename) && preg_match('/\.' . $this->type . '$/i', $filename)) {
95
+        if (file_exists($this->path.$filename) && preg_match('/\.'.$this->type.'$/i', $filename)) {
96 96
             $this->files[] = $filename;
97 97
         } elseif (!empty($this->domains)) {
98 98
             foreach ($this->domains as $domain => $paths) {
99 99
                 $domainFilename = str_replace($domain, $paths["public"], $filename);
100
-                if (file_exists($domainFilename) && preg_match('/\.' . $this->type . '$/i', $domainFilename)) {
100
+                if (file_exists($domainFilename) && preg_match('/\.'.$this->type.'$/i', $domainFilename)) {
101 101
                     $this->files[] = $domainFilename;
102 102
                 }
103 103
             }
@@ -114,7 +114,7 @@  discard block
 block discarded – undo
114 114
     public function setHash($hash)
115 115
     {
116 116
         $cache = Config::getParam('cache.var', '');
117
-        $this->hash = $hash . (strlen($cache) ? '.' : '') . $cache;
117
+        $this->hash = $hash.(strlen($cache) ? '.' : '').$cache;
118 118
         return $this;
119 119
     }
120 120
 
@@ -177,7 +177,7 @@  discard block
 block discarded – undo
177 177
             $sourceFile = explode("?", $sourceFile);
178 178
             $sourceFile = $sourceFile[0];
179 179
         }
180
-        $orig = realpath(dirname($filenamePath) . DIRECTORY_SEPARATOR . $sourceFile);
180
+        $orig = realpath(dirname($filenamePath).DIRECTORY_SEPARATOR.$sourceFile);
181 181
         return $orig;
182 182
     }
183 183
 
@@ -194,15 +194,15 @@  discard block
 block discarded – undo
194 194
         if (preg_match_all('#url\((.*?)\)#', $line, $urls, PREG_SET_ORDER)) {
195 195
             foreach ($urls as $source) {
196 196
                 $orig = self::calculateResourcePathname($filenamePath, $source);
197
-                if(!empty($orig)) {
197
+                if (!empty($orig)) {
198 198
                     $orig_part = preg_split("/Public/i", $orig);
199
-                    $dest = WEB_DIR . $orig_part[1];
199
+                    $dest = WEB_DIR.$orig_part[1];
200 200
                     GeneratorHelper::createDir(dirname($dest));
201 201
                     if (@copy($orig, $dest) === false) {
202
-                        throw new ConfigException("Can't copy " . $orig . " to " . $dest);
202
+                        throw new ConfigException("Can't copy ".$orig." to ".$dest);
203 203
                     }
204
-                } else {
205
-                    Logger::log($filenamePath . ' has an empty origin with the url ' . $source, LOG_WARNING);
204
+                }else {
205
+                    Logger::log($filenamePath.' has an empty origin with the url '.$source, LOG_WARNING);
206 206
                 }
207 207
             }
208 208
         }
@@ -215,11 +215,11 @@  discard block
 block discarded – undo
215 215
      * @throws \PSFS\base\exception\GeneratorException
216 216
      */
217 217
     protected function getSriHash($hash, $type = 'js') {
218
-        if(array_key_exists($hash, $this->sri)) {
218
+        if (array_key_exists($hash, $this->sri)) {
219 219
             $sriHash = $this->sri[$hash];
220
-        } else {
221
-            Inspector::stats('[SRITrait] Generating SRI for ' . $hash, Inspector::SCOPE_DEBUG);
222
-            $filename = WEB_DIR . DIRECTORY_SEPARATOR . $type . DIRECTORY_SEPARATOR . $hash . '.' . $type;
220
+        }else {
221
+            Inspector::stats('[SRITrait] Generating SRI for '.$hash, Inspector::SCOPE_DEBUG);
222
+            $filename = WEB_DIR.DIRECTORY_SEPARATOR.$type.DIRECTORY_SEPARATOR.$hash.'.'.$type;
223 223
             $sriHash = base64_encode(hash("sha384", file_get_contents($filename), true));
224 224
             $this->sri[$hash] = $sriHash;
225 225
             Cache::getInstance()->storeData($this->sriFilename, $this->sri, Cache::JSON, true);
Please login to merge, or discard this patch.
src/base/extension/traits/CssTrait.php 1 patch
Spacing   +21 added lines, -21 removed lines patch added patch discarded remove patch
@@ -30,8 +30,8 @@  discard block
 block discarded – undo
30 30
     protected function compileCss($basePath, $hash)
31 31
     {
32 32
         $debug = Config::getParam('debug');
33
-        $base = $basePath . "css" . DIRECTORY_SEPARATOR;
34
-        if ($debug || !file_exists($base . $hash . ".css")) {
33
+        $base = $basePath."css".DIRECTORY_SEPARATOR;
34
+        if ($debug || !file_exists($base.$hash.".css")) {
35 35
             $data = '';
36 36
             if (0 < count($this->files)) {
37 37
                 $minifier = new CSS();
@@ -39,15 +39,15 @@  discard block
 block discarded – undo
39 39
                     $data = $this->processCssLine($file, $base, $data, $hash);
40 40
                 }
41 41
             }
42
-            if($debug) {
43
-                AssetsHelper::storeContents($base . $hash . ".css", $data);
44
-            } else {
42
+            if ($debug) {
43
+                AssetsHelper::storeContents($base.$hash.".css", $data);
44
+            }else {
45 45
                 $minifier = new CSS();
46 46
                 $minifier->add($data);
47 47
                 ini_set('max_execution_time', -1);
48 48
                 ini_set('memory_limit', -1);
49 49
                 GeneratorHelper::createDir($base);
50
-                $minifier->minify($base . $hash . ".css");
50
+                $minifier->minify($base.$hash.".css");
51 51
             }
52 52
             unset($minifier);
53 53
         }
@@ -67,21 +67,21 @@  discard block
 block discarded – undo
67 67
         if (file_exists($file)) {
68 68
             $debug = Config::getParam('debug');
69 69
             $pathParts = explode("/", $file);
70
-            $filePath = $this->hash . "_" . $pathParts[count($pathParts) - 1];
71
-            if (!file_exists($base . $filePath) || filemtime($base . $filePath) < filemtime($file) || $debug) {
70
+            $filePath = $this->hash."_".$pathParts[count($pathParts) - 1];
71
+            if (!file_exists($base.$filePath) || filemtime($base.$filePath) < filemtime($file) || $debug) {
72 72
                 //Si tenemos modificaciones tenemos que compilar de nuevo todos los ficheros modificados
73
-                if (file_exists($base . $hash . ".css") && @unlink($base . $hash . ".css") === false) {
74
-                    throw new ConfigException("Can't unlink file " . $base . $hash . ".css");
73
+                if (file_exists($base.$hash.".css") && @unlink($base.$hash.".css") === false) {
74
+                    throw new ConfigException("Can't unlink file ".$base.$hash.".css");
75 75
                 }
76 76
                 $this->loopCssLines($file);
77 77
             }
78 78
             if ($debug) {
79 79
                 $data = file_get_contents($file);
80
-                AssetsHelper::storeContents($base . $filePath, $data);
81
-            } else {
80
+                AssetsHelper::storeContents($base.$filePath, $data);
81
+            }else {
82 82
                 $data .= file_get_contents($file);
83 83
             }
84
-            $this->compiledFiles[] = "/css/" . $filePath;
84
+            $this->compiledFiles[] = "/css/".$filePath;
85 85
         }
86 86
 
87 87
         return $data;
@@ -113,25 +113,25 @@  discard block
 block discarded – undo
113 113
      */
114 114
     protected function extractCssResources($source, $file)
115 115
     {
116
-        Inspector::stats('[CssTrait] Start collecting resources from ' . $file, Inspector::SCOPE_DEBUG);
116
+        Inspector::stats('[CssTrait] Start collecting resources from '.$file, Inspector::SCOPE_DEBUG);
117 117
         $sourceFile = AssetsHelper::extractSourceFilename($source);
118
-        $orig = realpath(dirname($file) . DIRECTORY_SEPARATOR . $sourceFile);
118
+        $orig = realpath(dirname($file).DIRECTORY_SEPARATOR.$sourceFile);
119 119
         $origPart = preg_split('/(\/|\\\)public(\/|\\\)/i', $orig);
120 120
         try {
121 121
             if (count($source) > 1 && array_key_exists(1, $origPart)) {
122
-                $dest = $this->path . $origPart[1];
122
+                $dest = $this->path.$origPart[1];
123 123
                 GeneratorHelper::createDir(dirname($dest));
124 124
                 if (!file_exists($dest) || filemtime($orig) > filemtime($dest)) {
125 125
                     if (@copy($orig, $dest) === FALSE) {
126
-                        throw new \RuntimeException('Can\' copy ' . $dest . '');
126
+                        throw new \RuntimeException('Can\' copy '.$dest.'');
127 127
                     }
128 128
                     Logger::log("$orig copiado a $dest", LOG_INFO);
129 129
                 }
130 130
             }
131
-        } catch (\Exception $e) {
131
+        }catch (\Exception $e) {
132 132
             Logger::log($e->getMessage(), LOG_ERR);
133 133
         }
134
-        Inspector::stats('[CssTrait] End collecting resources from ' . $file, Inspector::SCOPE_DEBUG);
134
+        Inspector::stats('[CssTrait] End collecting resources from '.$file, Inspector::SCOPE_DEBUG);
135 135
     }
136 136
 
137 137
     /**
@@ -146,8 +146,8 @@  discard block
 block discarded – undo
146 146
             foreach ($compiledFiles as $file) {
147 147
                 echo "\t\t<link href='{$file}' rel='stylesheet' media='screen, print'>";
148 148
             }
149
-        } else {
150
-            echo "\t\t<link href='" . $baseUrl . "/css/" . $hash . ".css' rel='stylesheet' " .
149
+        }else {
150
+            echo "\t\t<link href='".$baseUrl."/css/".$hash.".css' rel='stylesheet' ".
151 151
                 //"crossorigin='anonymous' integrity='sha384-" . $sri . "'>";
152 152
                 "media='screen, print'>";
153 153
         }
Please login to merge, or discard this patch.
src/base/extension/traits/JsTrait.php 1 patch
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -24,8 +24,8 @@  discard block
 block discarded – undo
24 24
             foreach ($compiledFiles as $file) {
25 25
                 echo "\t\t<script type='text/javascript' src='{$file}'></script>\n";
26 26
             }
27
-        } else {
28
-            echo "\t\t<script type='text/javascript' src='" . $baseUrl . "/js/" . $hash . ".js'" .
27
+        }else {
28
+            echo "\t\t<script type='text/javascript' src='".$baseUrl."/js/".$hash.".js'".
29 29
                 //" crossorigin='anonymous' integrity='sha384-" . $sri . "'></script>\n";
30 30
                 "></script>\n";
31 31
         }
@@ -42,12 +42,12 @@  discard block
 block discarded – undo
42 42
      */
43 43
     protected function putDebugJs($pathParts, $base, $file, $hash, array &$compiledFiles)
44 44
     {
45
-        $filePath = $hash . "_" . $pathParts[count($pathParts) - 1];
46
-        $compiledFiles[] = "/js/" . $filePath;
45
+        $filePath = $hash."_".$pathParts[count($pathParts) - 1];
46
+        $compiledFiles[] = "/js/".$filePath;
47 47
         $data = "";
48
-        if (!file_exists($base . $filePath) || filemtime($base . $filePath) < filemtime($file)) {
48
+        if (!file_exists($base.$filePath) || filemtime($base.$filePath) < filemtime($file)) {
49 49
             $data = file_get_contents($file);
50
-            AssetsHelper::storeContents($base . $filePath, $data);
50
+            AssetsHelper::storeContents($base.$filePath, $data);
51 51
         }
52 52
         return $data;
53 53
     }
@@ -63,9 +63,9 @@  discard block
 block discarded – undo
63 63
      */
64 64
     protected function compileJs(array $files, $basePath, $hash, array &$compiledFiles)
65 65
     {
66
-        $base = $basePath . "js" . DIRECTORY_SEPARATOR;
66
+        $base = $basePath."js".DIRECTORY_SEPARATOR;
67 67
         $debug = Config::getParam('debug');
68
-        if ($debug || !file_exists($base . $hash . ".js")) {
68
+        if ($debug || !file_exists($base.$hash.".js")) {
69 69
             $data = '';
70 70
             if (0 < count($files)) {
71 71
                 $minifier = new JS();
@@ -74,15 +74,15 @@  discard block
 block discarded – undo
74 74
                     if (file_exists($file)) {
75 75
                         if ($debug) {
76 76
                             $data = $this->putDebugJs($pathParts, $base, $file, $hash, $compiledFiles);
77
-                        } elseif (!file_exists($base . $hash . ".js")) {
77
+                        } elseif (!file_exists($base.$hash.".js")) {
78 78
                             $minifier->add($file);
79 79
                             //$data = $this->putProductionJs($base, $file, $data);
80 80
                         }
81 81
                     }
82 82
                 }
83
-                if($debug) {
84
-                    AssetsHelper::storeContents($base . $hash . ".js", $data);
85
-                } else {
83
+                if ($debug) {
84
+                    AssetsHelper::storeContents($base.$hash.".js", $data);
85
+                }else {
86 86
                     $this->dumpJs($hash, $base, $minifier);
87 87
                 }
88 88
                 unset($minifier);
@@ -103,9 +103,9 @@  discard block
 block discarded – undo
103 103
         ini_set('memory_limit', -1);
104 104
         GeneratorHelper::createDir($base);
105 105
         if (Config::getParam('assets.obfuscate', false)) {
106
-            $minifier->gzip($base . $hash . ".js");
107
-        } else {
108
-            $minifier->minify($base . $hash . ".js");
106
+            $minifier->gzip($base.$hash.".js");
107
+        }else {
108
+            $minifier->minify($base.$hash.".js");
109 109
         }
110 110
     }
111 111
 }
Please login to merge, or discard this patch.
src/base/types/helpers/I18nHelper.php 1 patch
Spacing   +19 added lines, -19 removed lines patch added patch discarded remove patch
@@ -44,8 +44,8 @@  discard block
 block discarded – undo
44 44
         // TODO check more en locales
45 45
         if (strtolower($locale) === 'en') {
46 46
             $locale = 'en_GB';
47
-        } else {
48
-            $locale = $locale . '_' . strtoupper($locale);
47
+        }else {
48
+            $locale = $locale.'_'.strtoupper($locale);
49 49
         }
50 50
         $defaultLocales = explode(',', Config::getParam('i18n.locales', ''));
51 51
         if (!in_array($locale, array_merge($defaultLocales, self::$langs))) {
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
         $translations = array();
65 65
         if (file_exists($absoluteFileName)) {
66 66
             @include($absoluteFileName);
67
-        } else {
67
+        }else {
68 68
             Cache::getInstance()->storeData($absoluteFileName, "<?php \$translations = array();\n", Cache::TEXT, TRUE);
69 69
         }
70 70
 
@@ -79,13 +79,13 @@  discard block
 block discarded – undo
79 79
     public static function setLocale($default = null)
80 80
     {
81 81
         $locale = self::extractLocale($default);
82
-        Inspector::stats('[i18NHelper] Set locale to project [' . $locale . ']', Inspector::SCOPE_DEBUG);
82
+        Inspector::stats('[i18NHelper] Set locale to project ['.$locale.']', Inspector::SCOPE_DEBUG);
83 83
         // Load translations
84
-        putenv("LC_ALL=" . $locale);
84
+        putenv("LC_ALL=".$locale);
85 85
         setlocale(LC_ALL, $locale);
86 86
         // Load the locale path
87
-        $localePath = BASE_DIR . DIRECTORY_SEPARATOR . 'locale';
88
-        Logger::log('Set locale dir ' . $localePath);
87
+        $localePath = BASE_DIR.DIRECTORY_SEPARATOR.'locale';
88
+        Logger::log('Set locale dir '.$localePath);
89 89
         GeneratorHelper::createDir($localePath);
90 90
         bindtextdomain('translations', $localePath);
91 91
         textdomain('translations');
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
             }
106 106
         } elseif (is_object($data)) {
107 107
             $properties = get_class_vars($data);
108
-            if(is_array($properties)) {
108
+            if (is_array($properties)) {
109 109
                 foreach (array_keys($properties) as $property) {
110 110
                     $data->$property = self::utf8Encode($data->$property);
111 111
                 }
@@ -152,7 +152,7 @@  discard block
 block discarded – undo
152 152
             ['i', 'i', 'i', 'i', 'I', 'I', 'I', 'I'],
153 153
             ['o', 'o', 'o', 'o', 'O', 'O', 'O', 'O'],
154 154
             ['u', 'u', 'u', 'u', 'U', 'U', 'U', 'U'],
155
-            ['n', 'N', 'c', 'C',],
155
+            ['n', 'N', 'c', 'C', ],
156 156
         ];
157 157
 
158 158
         $text = filter_var($string, FILTER_SANITIZE_STRING, FILTER_FLAG_STRIP_LOW);
@@ -172,24 +172,24 @@  discard block
 block discarded – undo
172 172
      */
173 173
     public static function findTranslations($path, $locale)
174 174
     {
175
-        $localePath = realpath(BASE_DIR . DIRECTORY_SEPARATOR . 'locale');
176
-        $localePath .= DIRECTORY_SEPARATOR . $locale . DIRECTORY_SEPARATOR . 'LC_MESSAGES' . DIRECTORY_SEPARATOR;
175
+        $localePath = realpath(BASE_DIR.DIRECTORY_SEPARATOR.'locale');
176
+        $localePath .= DIRECTORY_SEPARATOR.$locale.DIRECTORY_SEPARATOR.'LC_MESSAGES'.DIRECTORY_SEPARATOR;
177 177
 
178 178
         $translations = array();
179 179
         if (file_exists($path)) {
180 180
             $directory = dir($path);
181 181
             while (false !== ($fileName = $directory->read())) {
182 182
                 GeneratorHelper::createDir($localePath);
183
-                if (!file_exists($localePath . 'translations.po')) {
184
-                    file_put_contents($localePath . 'translations.po', '');
183
+                if (!file_exists($localePath.'translations.po')) {
184
+                    file_put_contents($localePath.'translations.po', '');
185 185
                 }
186
-                $inspectPath = realpath($path . DIRECTORY_SEPARATOR . $fileName);
187
-                $cmdPhp = "export PATH=\$PATH:/opt/local/bin; xgettext " .
188
-                    $inspectPath . DIRECTORY_SEPARATOR .
186
+                $inspectPath = realpath($path.DIRECTORY_SEPARATOR.$fileName);
187
+                $cmdPhp = "export PATH=\$PATH:/opt/local/bin; xgettext ".
188
+                    $inspectPath.DIRECTORY_SEPARATOR.
189 189
                     "*.php --from-code=UTF-8 -j -L PHP --debug --force-po -o {$localePath}translations.po";
190
-                if (is_dir($path . DIRECTORY_SEPARATOR . $fileName) && preg_match('/^\./', $fileName) == 0) {
191
-                    $res = t('Revisando directorio: ') . $inspectPath;
192
-                    $res .= t('Comando ejecutado: ') . $cmdPhp;
190
+                if (is_dir($path.DIRECTORY_SEPARATOR.$fileName) && preg_match('/^\./', $fileName) == 0) {
191
+                    $res = t('Revisando directorio: ').$inspectPath;
192
+                    $res .= t('Comando ejecutado: ').$cmdPhp;
193 193
                     $res .= shell_exec($cmdPhp);
194 194
                     usleep(10);
195 195
                     $translations[] = $res;
Please login to merge, or discard this patch.
src/functions.php 2 patches
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -35,16 +35,16 @@  discard block
 block discarded – undo
35 35
     {
36 36
         $html = '<style>*{margin: 0} body{background: rgb(36,36,36); padding: 5px;}</style>';
37 37
         $html .= '<pre style="padding: 10px; margin: 5px; display: block; background: rgb(41,41,41); color: white; border-radius: 5px;">';
38
-        if(is_null($var)) {
39
-            if($varName) $html .= $varName . ' ==> <b>NULL</b>';
40
-        } else {
41
-            $html .= print_r('(' . gettype($var) . ') ', TRUE);
42
-            if($varName) $html .= $varName . ' ==> ';
43
-            if("boolean" === gettype($var)) {
38
+        if (is_null($var)) {
39
+            if ($varName) $html .= $varName.' ==> <b>NULL</b>';
40
+        }else {
41
+            $html .= print_r('('.gettype($var).') ', TRUE);
42
+            if ($varName) $html .= $varName.' ==> ';
43
+            if ("boolean" === gettype($var)) {
44 44
                 $html .= print_r($var ? "TRUE" : "FALSE", TRUE);
45
-            } else if((is_array($var) && !empty($var)) || (!is_array($var)) ||  ($var === 0)) {
45
+            }else if ((is_array($var) && !empty($var)) || (!is_array($var)) || ($var === 0)) {
46 46
                 $html .= print_r($var, TRUE);
47
-            } else {
47
+            }else {
48 48
                 $html .= 'empty';
49 49
             }
50 50
         }
@@ -79,14 +79,14 @@  discard block
 block discarded – undo
79 79
     /* @var $file SplFileInfo */
80 80
     foreach ($finder as $file) {
81 81
         $path = $file->getRealPath();
82
-        if(!in_array($path, $loaded_files)) {
82
+        if (!in_array($path, $loaded_files)) {
83 83
             $loaded_files[] = $path;
84 84
             require_once($path);
85 85
         }
86 86
     }
87 87
 }
88 88
 
89
-if(!function_exists('t')) {
89
+if (!function_exists('t')) {
90 90
     function t($message, $key = null, $reload = false) {
91 91
         return CustomTranslateExtension::_($message, $key, $reload);
92 92
     }
Please login to merge, or discard this patch.
Braces   +9 added lines, -4 removed lines patch added patch discarded remove patch
@@ -36,10 +36,14 @@  discard block
 block discarded – undo
36 36
         $html = '<style>*{margin: 0} body{background: rgb(36,36,36); padding: 5px;}</style>';
37 37
         $html .= '<pre style="padding: 10px; margin: 5px; display: block; background: rgb(41,41,41); color: white; border-radius: 5px;">';
38 38
         if(is_null($var)) {
39
-            if($varName) $html .= $varName . ' ==> <b>NULL</b>';
39
+            if($varName) {
40
+                $html .= $varName . ' ==> <b>NULL</b>';
41
+            }
40 42
         } else {
41 43
             $html .= print_r('(' . gettype($var) . ') ', TRUE);
42
-            if($varName) $html .= $varName . ' ==> ';
44
+            if($varName) {
45
+                $html .= $varName . ' ==> ';
46
+            }
43 47
             if("boolean" === gettype($var)) {
44 48
                 $html .= print_r($var ? "TRUE" : "FALSE", TRUE);
45 49
             } else if((is_array($var) && !empty($var)) || (!is_array($var)) ||  ($var === 0)) {
@@ -63,9 +67,10 @@  discard block
 block discarded – undo
63 67
     function getallheaders()
64 68
     {
65 69
         $headers = [];
66
-        foreach ($_SERVER as $h => $v)
67
-            if (preg_match('/HTTP_(.+)/', $h, $hp)) {
70
+        foreach ($_SERVER as $h => $v) {
71
+                    if (preg_match('/HTTP_(.+)/', $h, $hp)) {
68 72
                 $headers[$hp[1]] = $v;
73
+        }
69 74
             }
70 75
         return $headers;
71 76
     }
Please login to merge, or discard this patch.