@@ -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 | /** |
@@ -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); |
@@ -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'; |