@@ -14,7 +14,7 @@ |
||
| 14 | 14 | { |
| 15 | 15 | $combined = null; |
| 16 | 16 | $parts = array_filter($parts); |
| 17 | - array_walk_recursive($parts, function ($part) use (&$combined) { |
|
| 17 | + array_walk_recursive($parts, function($part) use (&$combined) { |
|
| 18 | 18 | // Normalise path |
| 19 | 19 | $part = str_replace(['/', '\\'], DIRECTORY_SEPARATOR, $part); |
| 20 | 20 | $combined = $combined |
@@ -111,7 +111,7 @@ |
||
| 111 | 111 | $this->filesystem->ensureDirectoryExists($resourcesPath); |
| 112 | 112 | |
| 113 | 113 | // Copy missing resources |
| 114 | - $files = new DirectoryIterator(__DIR__.'/../resources'); |
|
| 114 | + $files = new DirectoryIterator(__DIR__ . '/../resources'); |
|
| 115 | 115 | foreach ($files as $file) { |
| 116 | 116 | $targetPath = $resourcesPath . DIRECTORY_SEPARATOR . $file->getFilename(); |
| 117 | 117 | if ($file->isFile() && !file_exists($targetPath)) { |