Passed
Branch master (ec27b7)
by Robbie
03:38
created
Category
src/Util.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
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
Please login to merge, or discard this patch.
src/VendorExposeTask.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -111,7 +111,7 @@
 block discarded – undo
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)) {
Please login to merge, or discard this patch.