@@ -143,7 +143,7 @@ |
||
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) |
@@ -133,7 +133,7 @@ |
||
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); |
@@ -79,7 +79,7 @@ |
||
79 | 79 | |
80 | 80 | /** |
81 | 81 | * |
82 | - * @return ResolverInterface |
|
82 | + * @return MapResolver |
|
83 | 83 | */ |
84 | 84 | protected function getResolver() |
85 | 85 | { |
@@ -46,7 +46,7 @@ |
||
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 | /** |
@@ -44,7 +44,7 @@ |
||
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 | /** |
@@ -4,4 +4,4 @@ |
||
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'; |