Completed
Push — master ( 1a73b0...9aed3e )
by Westin
14:03 queued 03:58
created
src/Controller/ConsoleController.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -143,7 +143,7 @@
 block discarded – undo
143 143
 
144 144
     /**
145 145
      * Outputs given $line if $verbose i truthy value.
146
-     * @param $line
146
+     * @param string $line
147 147
      * @param bool $verbose verbose flag, default true
148 148
      */
149 149
     protected function output($line, $verbose = true)
Please login to merge, or discard this 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.
tests/AssetManagerTest/Controller/ConsoleControllerTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@
 block discarded – undo
79 79
 
80 80
     /**
81 81
      *
82
-     * @return ResolverInterface
82
+     * @return MapResolver
83 83
      */
84 84
     protected function getResolver()
85 85
     {
Please login to merge, or discard this patch.
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.
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.