Passed
Push — master ( 24db70...c14a6b )
by Matthias
02:31
created
src/Zepi/Turbo/Response/Response.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -115,7 +115,7 @@
 block discarded – undo
115 115
      * 
116 116
      * @access public
117 117
      * @param string $key
118
-     * @param mixed $value
118
+     * @param string $value
119 119
      */
120 120
     public function setData($key, $value)
121 121
     {
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -258,7 +258,7 @@  discard block
 block discarded – undo
258 258
             $target = $this->addOriginToTargetUrl($target);
259 259
         }
260 260
         
261
-        header("Location: " . $target, true, $headerCode);
261
+        header("Location: ".$target, true, $headerCode);
262 262
     }
263 263
     
264 264
     /**
@@ -356,7 +356,7 @@  discard block
 block discarded – undo
356 356
             return false;
357 357
         }
358 358
         
359
-        $message = $this->request->getProtocol() . ' ' . $code . ' ' . $codes[$code];
359
+        $message = $this->request->getProtocol().' '.$code.' '.$codes[$code];
360 360
         header($message, true, $code);
361 361
         
362 362
         if ($resetOutput) {
@@ -387,7 +387,7 @@  discard block
 block discarded – undo
387 387
     protected function addOriginToTargetUrl($target)
388 388
     {
389 389
         $origin = $this->request->getFullRoute();
390
-        $additionalQuery = '_origin=' . base64_encode($origin);
390
+        $additionalQuery = '_origin='.base64_encode($origin);
391 391
         
392 392
         $parts = parse_url($target);
393 393
         
Please login to merge, or discard this patch.
src/Zepi/Turbo/Framework.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -376,7 +376,7 @@
 block discarded – undo
376 376
      * 
377 377
      * @access public
378 378
      * @param string $className
379
-     * @return mixed
379
+     * @return Backend\ObjectBackendAbstract
380 380
      * 
381 381
      * @throws \Zepi\Turbo\Exception Cannot find the module for the given class name.
382 382
      * @throws \Zepi\Turbo\Exception Instance isn't an object!
Please login to merge, or discard this patch.
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -303,7 +303,7 @@  discard block
 block discarded – undo
303 303
     public static function prepareClassName($className)
304 304
     {
305 305
         if (substr($className, 0, 1) !== '\\') {
306
-            $className = '\\' . $className;
306
+            $className = '\\'.$className;
307 307
         }
308 308
         
309 309
         return $className;
@@ -321,7 +321,7 @@  discard block
 block discarded – undo
321 321
     public static function prepareNamespace($namespace)
322 322
     {
323 323
         if (substr($namespace, 0, 1) !== '\\') {
324
-            $namespace = '\\' . $namespace;
324
+            $namespace = '\\'.$namespace;
325 325
         }
326 326
         
327 327
         if (substr($namespace, -1) !== '\\') {
@@ -348,24 +348,24 @@  discard block
 block discarded – undo
348 348
         $className = self::prepareClassName($className);
349 349
         
350 350
         if (strpos($className, '\\Zepi\\Turbo\\') === 0) {
351
-            $sourceDirectory = realpath(__DIR__ . '/../../');
351
+            $sourceDirectory = realpath(__DIR__.'/../../');
352 352
             
353 353
             // The class is from the framework, so we load the class file from the framework directory
354
-            $path = $sourceDirectory . str_replace('\\', '/', $className) . '.php';
354
+            $path = $sourceDirectory.str_replace('\\', '/', $className).'.php';
355 355
         } else {
356 356
             // The class isn't from the framework, so we need the module for the given class name
357 357
             $module = $this->moduleManager->getModuleByClassName($className);
358 358
             
359 359
             if ($module !== false) {
360 360
                 $fileName = substr($className, strlen($module->getNamespace()));
361
-                $path = $module->getDirectory() . '/src/' . str_replace('\\', '/', $fileName) . '.php';
361
+                $path = $module->getDirectory().'/src/'.str_replace('\\', '/', $fileName).'.php';
362 362
             }
363 363
         }
364 364
 
365 365
         if ($path !== false && file_exists($path)) {
366 366
             require_once($path);
367 367
         } else if ($module !== false) {
368
-            throw new Exception('Cannot find the class "' . $className . '"!');
368
+            throw new Exception('Cannot find the class "'.$className.'"!');
369 369
         }
370 370
     }
371 371
     
@@ -391,14 +391,14 @@  discard block
 block discarded – undo
391 391
             $module = $this->moduleManager->getModuleByClassName($className);
392 392
             
393 393
             if ($module === false) {
394
-                throw new Exception('Cannot find the module for the given class name "' . $className . '".');
394
+                throw new Exception('Cannot find the module for the given class name "'.$className.'".');
395 395
             }
396 396
             
397 397
             $instance = $module->getInstance($className);
398 398
         }
399 399
         
400 400
         if (!is_object($instance)) {
401
-            throw new Exception('Instance for class name "' . $className . '" isn\'t an object!');
401
+            throw new Exception('Instance for class name "'.$className.'" isn\'t an object!');
402 402
         }
403 403
         
404 404
         return $instance;
@@ -419,26 +419,26 @@  discard block
 block discarded – undo
419 419
 
420 420
         switch ($className) {
421 421
             case '\\Zepi\\Turbo\\Backend\\VirtualModuleBackend':
422
-                $path = $this->rootDirectory . '/data/modules.data';
422
+                $path = $this->rootDirectory.'/data/modules.data';
423 423
                 return new \Zepi\Turbo\Backend\FileObjectBackend($path);
424 424
                 break;
425 425
             case '\\Zepi\\Turbo\\Backend\\VirtualHandlerBackend':
426
-                $path = $this->rootDirectory . '/data/handlers.data';
426
+                $path = $this->rootDirectory.'/data/handlers.data';
427 427
                 return new \Zepi\Turbo\Backend\FileObjectBackend($path);
428 428
                 break;
429 429
             case '\\Zepi\\Turbo\\Backend\\VirtualRouteBackend':
430
-                $path = $this->rootDirectory . '/data/routes.data';
430
+                $path = $this->rootDirectory.'/data/routes.data';
431 431
                 return new \Zepi\Turbo\Backend\FileObjectBackend($path);
432 432
                 break;
433 433
             case '\\Zepi\\Turbo\\Backend\\VirtualDataSourceBackend':
434
-                $path = $this->rootDirectory . '/data/data-sources.data';
434
+                $path = $this->rootDirectory.'/data/data-sources.data';
435 435
                 return new \Zepi\Turbo\Backend\FileObjectBackend($path);
436 436
                 break;
437 437
             default:
438 438
                 if (class_exists($className, true)) {
439 439
                     return new $className();
440 440
                 } else {
441
-                    throw new Exception('Class "' . $className . '" is not defined.');
441
+                    throw new Exception('Class "'.$className.'" is not defined.');
442 442
                 }
443 443
                 break;
444 444
         }
Please login to merge, or discard this patch.
src/Zepi/Turbo/Backend/FileObjectBackend.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@
 block discarded – undo
73 73
     protected function saveSerializedObject($serializedObject)
74 74
     {
75 75
         if (file_exists($this->path) && !is_writable($this->path)) {
76
-            throw new Exception('The file "' . $this->path . '" isn\'t writable!');
76
+            throw new Exception('The file "'.$this->path.'" isn\'t writable!');
77 77
         }
78 78
 
79 79
         return file_put_contents($this->path, $serializedObject);
Please login to merge, or discard this patch.
src/Zepi/Turbo/Backend/FileBackend.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
         
81 81
         // If the file exists but isn't writeable we need to throw an exception
82 82
         if (file_exists($path) && !is_writable($path)) {
83
-            throw new Exception('The file "' . $path . '" isn\'t writable!');
83
+            throw new Exception('The file "'.$path.'" isn\'t writable!');
84 84
         }
85 85
         
86 86
         return file_put_contents($path, $content);
@@ -154,7 +154,7 @@  discard block
 block discarded – undo
154 154
         if (substr($additionalPath, 0, 1) === '/') {
155 155
             $path = $additionalPath;
156 156
         } else if ($additionalPath !== '') {
157
-            $path = $this->path . $additionalPath;
157
+            $path = $this->path.$additionalPath;
158 158
         } else {
159 159
             $path = $this->path;
160 160
         }
@@ -179,7 +179,7 @@  discard block
 block discarded – undo
179 179
         }
180 180
         
181 181
         if (!is_readable($path) && !is_writeable($path)) {
182
-            throw new Exception('The file path "' . $path . '" is not readable and not writeable!');
182
+            throw new Exception('The file path "'.$path.'" is not readable and not writeable!');
183 183
         }
184 184
         
185 185
         return $path;
@@ -198,7 +198,7 @@  discard block
 block discarded – undo
198 198
         $directory = dirname($path);
199 199
         if (!file_exists($directory)) {
200 200
             if (!is_writeable($this->getExistingPath($directory))) {
201
-                throw new Exception('The directory "' . $directory . '" isn\'t writeable!');
201
+                throw new Exception('The directory "'.$directory.'" isn\'t writeable!');
202 202
             }
203 203
             
204 204
             mkdir($directory, 0755, true);
Please login to merge, or discard this patch.
src/Zepi/Turbo/Manager/ModuleManager.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -185,7 +185,7 @@  discard block
 block discarded – undo
185 185
         // Search the path for the module and initialize it
186 186
         $path = $this->searchModulePath($namespace);
187 187
         if ($path === false) {
188
-            throw new Exception('Can not find the module "' . $namespace . '".');
188
+            throw new Exception('Can not find the module "'.$namespace.'".');
189 189
         }
190 190
         
191 191
         // Get the version
@@ -308,11 +308,11 @@  discard block
 block discarded – undo
308 308
      */
309 309
     protected function parseModuleJson($path)
310 310
     {
311
-        if (!file_exists($path . '/Module.json')) {
312
-            throw new Exception('Cannot find Module.json in the path "' . $path . '".');
311
+        if (!file_exists($path.'/Module.json')) {
312
+            throw new Exception('Cannot find Module.json in the path "'.$path.'".');
313 313
         }
314 314
 
315
-        $moduleProperties = json_decode(file_get_contents($path . '/Module.json'));
315
+        $moduleProperties = json_decode(file_get_contents($path.'/Module.json'));
316 316
         
317 317
         return $moduleProperties;
318 318
     }
@@ -331,7 +331,7 @@  discard block
 block discarded – undo
331 331
         $moduleProperties = $this->parseModuleJson($path);
332 332
 
333 333
         if (!isset($moduleProperties->module->namespace)) {
334
-            throw new Exception('The namespace is not set in the module properties for the module in "' . $path . '".');
334
+            throw new Exception('The namespace is not set in the module properties for the module in "'.$path.'".');
335 335
         }
336 336
         
337 337
         return Framework::prepareNamespace($moduleProperties->module->namespace);
@@ -360,16 +360,16 @@  discard block
 block discarded – undo
360 360
         }
361 361
         
362 362
         // Try to find and load the module
363
-        if (!file_exists($path . '/Module.php')) {
364
-            throw new Exception('The module "' . $path . '" is not valid!');
363
+        if (!file_exists($path.'/Module.php')) {
364
+            throw new Exception('The module "'.$path.'" is not valid!');
365 365
         }
366 366
 
367 367
         // Look for dependencies and warn the user or activate the dependencies
368 368
         $this->handleModuleDependencies($moduleNamespace, $path, $activateDependencies);
369 369
         
370 370
         // Load the module
371
-        require_once($path . '/Module.php');
372
-        $moduleClassName = Framework::prepareClassName($moduleNamespace . 'Module');
371
+        require_once($path.'/Module.php');
372
+        $moduleClassName = Framework::prepareClassName($moduleNamespace.'Module');
373 373
         
374 374
         // Initialize the module
375 375
         $module = new $moduleClassName($this->framework, $moduleNamespace, $path);
@@ -428,7 +428,7 @@  discard block
 block discarded – undo
428 428
                 if ($activateDependencies) {
429 429
                     $this->activateModule($dependencyModuleNamespace, $activateDependencies);
430 430
                 } else {
431
-                    throw new Exception('Can not activate the module "' . $moduleNamespace . '". The module requires the module "' . $dependencyModuleNamespace . '" which isn\'t activated.');
431
+                    throw new Exception('Can not activate the module "'.$moduleNamespace.'". The module requires the module "'.$dependencyModuleNamespace.'" which isn\'t activated.');
432 432
                 }
433 433
             }
434 434
         }
Please login to merge, or discard this patch.
src/Zepi/Turbo/Manager/RequestManager.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -167,7 +167,7 @@  discard block
 block discarded – undo
167 167
 
168 168
         // Generate the full url and extract the base
169 169
         $scheme = $this->getScheme();
170
-        $fullUrl = $scheme . '://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
170
+        $fullUrl = $scheme.'://'.$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'];
171 171
 
172 172
         $isSsl = false;
173 173
         if ($scheme == 'https') {
@@ -247,7 +247,7 @@  discard block
 block discarded – undo
247 247
     {
248 248
         $scheme = $this->getScheme();
249 249
 
250
-        return $scheme . '://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
250
+        return $scheme.'://'.$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'];
251 251
     }
252 252
 
253 253
     /**
@@ -302,7 +302,7 @@  discard block
 block discarded – undo
302 302
         if ($locale == '') {
303 303
             $locale = 'en_US';
304 304
         } else if (strpos($locale, '_') === false) {
305
-            $locale = $locale . '_' . strtoupper($locale);
305
+            $locale = $locale.'_'.strtoupper($locale);
306 306
         }
307 307
         
308 308
         return $locale;
Please login to merge, or discard this patch.
src/Zepi/Turbo/Request/RequestAbstract.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -193,7 +193,7 @@  discard block
 block discarded – undo
193 193
         $this->routeParams[] = $param;
194 194
         
195 195
         if ($key != '') {
196
-            $this->routeParams[$key]= $param;
196
+            $this->routeParams[$key] = $param;
197 197
         }
198 198
     }
199 199
     
@@ -255,7 +255,7 @@  discard block
 block discarded – undo
255 255
         
256 256
         $delimiter = $this->getRouteDelimiter();
257 257
         if (substr($routePart, 0, strlen($delimiter)) !== $delimiter) {
258
-            $routePart = $delimiter . $routePart;
258
+            $routePart = $delimiter.$routePart;
259 259
         }
260 260
         
261 261
         $posPoint = strrpos($routePart, '.');
@@ -263,7 +263,7 @@  discard block
 block discarded – undo
263 263
             $routePart .= $delimiter;
264 264
         }
265 265
         
266
-        return $this->base . $routePart;
266
+        return $this->base.$routePart;
267 267
     }
268 268
     
269 269
     /**
Please login to merge, or discard this patch.
src/Zepi/Turbo/Manager/DependencyInjectionManager.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -127,7 +127,7 @@  discard block
 block discarded – undo
127 127
             }
128 128
         
129 129
             if ($parameterValue === null) {
130
-                throw new Exception('Cannot find correct value for parameter "' . $parameter->name . '" in class "' . $constructor->class . '".');
130
+                throw new Exception('Cannot find correct value for parameter "'.$parameter->name.'" in class "'.$constructor->class.'".');
131 131
             }
132 132
         
133 133
             $parameters[] = $parameterValue;
@@ -219,7 +219,7 @@  discard block
 block discarded – undo
219 219
             break;
220 220
             
221 221
             default:
222
-                throw new Exception('Cannot find framework manager "' . $className . '".');
222
+                throw new Exception('Cannot find framework manager "'.$className.'".');
223 223
             break;
224 224
         }
225 225
     }
Please login to merge, or discard this patch.
src/Zepi/Turbo/Manager/DataSourceManager.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -199,14 +199,14 @@
 block discarded – undo
199 199
         
200 200
         // If there is no driver for the given type class throw an exception
201 201
         if ($driver === false) {
202
-            throw new Exception('Cannot find a driver for the given type class "' . $typeClass . '".');
202
+            throw new Exception('Cannot find a driver for the given type class "'.$typeClass.'".');
203 203
         }
204 204
         
205 205
         $dataSourceClass = $this->searchDataSourceClass($typeClass, $driver);
206 206
 
207 207
         // If there is no data source class for the given type class throw an exception
208 208
         if ($dataSourceClass === false) {
209
-            throw new Exception('Cannot find a data source for the given type class "' . $typeClass . '" (selected driver: "' . $driver . '").');
209
+            throw new Exception('Cannot find a data source for the given type class "'.$typeClass.'" (selected driver: "'.$driver.'").');
210 210
         }
211 211
         
212 212
         return $this->framework->getInstance($dataSourceClass);
Please login to merge, or discard this patch.