Completed
Push — master ( 553f57...d93738 )
by Westin
02:57 queued 34s
created
src/View/Helper/Asset.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@
 block discarded – undo
46 46
         // current timestamp as default
47 47
         $timestamp = $timestamp === null ? time() : $timestamp;
48 48
 
49
-        return $filename . '?' . urlencode($queryString) . '=' . $timestamp;
49
+        return $filename.'?'.urlencode($queryString).'='.$timestamp;
50 50
     }
51 51
 
52 52
     /**
Please login to merge, or discard this patch.
src/Module.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
      */
45 45
     public function getConfig()
46 46
     {
47
-        return include __DIR__ . '/../config/module.config.php';
47
+        return include __DIR__.'/../config/module.config.php';
48 48
     }
49 49
 
50 50
     /**
Please login to merge, or discard this patch.
src/Controller/ConsoleController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -133,7 +133,7 @@
 block discarded – undo
133 133
                 if ($object === '.' || $object === '..') {
134 134
                     continue;
135 135
                 }
136
-                $this->recursiveRemove($node . '/' . $object);
136
+                $this->recursiveRemove($node.'/'.$object);
137 137
             }
138 138
         } elseif (is_file($node)) {
139 139
             $this->output(sprintf("unlinking %s...", $node), $verbose);
Please login to merge, or discard this patch.
Module.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,4 +4,4 @@
 block discarded – undo
4 4
  * It allows usage of this module even without composer.
5 5
  * The original Module.php is in 'src/AssetManager' in order to respect PSR-0
6 6
  */
7
-require_once __DIR__ . '/src/Module.php';
7
+require_once __DIR__.'/src/Module.php';
Please login to merge, or discard this patch.