Test Failed
Push — 1.0.0-dev ( ef06ce...62b9b2 )
by nguereza
05:33
created
core/classes/Module.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@
 block discarded – undo
58 58
          */
59 59
         public function add($name) {
60 60
             if (in_array($name, $this->list)) {
61
-               $this->logger->warning('The module [' .$name. '] already added skipping.');
61
+               $this->logger->warning('The module [' . $name . '] already added skipping.');
62 62
                return $this;
63 63
             }
64 64
             $this->list[] = $name;
Please login to merge, or discard this patch.
core/classes/Log.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -317,7 +317,7 @@  discard block
 block discarded – undo
317 317
         protected function getLogDebugBacktraceInfo() {
318 318
             $dtrace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS);
319 319
             $i = 0;
320
-            while ($dtrace[$i]['file'] == __FILE__ ) {
320
+            while ($dtrace[$i]['file'] == __FILE__) {
321 321
                 $i++;
322 322
             } 
323 323
             $fileInfo = $dtrace[$i];
@@ -333,11 +333,11 @@  discard block
 block discarded – undo
333 333
             if (isset($fileInfo['line'])) {
334 334
                 $line = $fileInfo['line'];
335 335
             }
336
-            if (isset($dtrace[$i+1]['function'])) {
337
-                $function = $dtrace[$i+1]['function'];
336
+            if (isset($dtrace[$i + 1]['function'])) {
337
+                $function = $dtrace[$i + 1]['function'];
338 338
             }
339
-            if (isset($dtrace[$i+1]['class'])) {
340
-                $class = $dtrace[$i+1]['class'];
339
+            if (isset($dtrace[$i + 1]['class'])) {
340
+                $class = $dtrace[$i + 1]['class'];
341 341
             }
342 342
             
343 343
             return array(
Please login to merge, or discard this patch.