File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -121,15 +121,15 @@ private function copyIncludedFiles(): void
121121 );
122122
123123 foreach ($ patterns as $ pattern ) {
124- $ matchingFiles = glob ($ sourcePath . '/ ' . $ pattern , GLOB_BRACE );
124+ $ matchingFiles = glob ($ sourcePath. '/ ' . $ pattern , GLOB_BRACE );
125125
126126 foreach ($ matchingFiles as $ sourceFile ) {
127127 $ relativePath = substr ($ sourceFile , strlen ($ sourcePath ) + 1 );
128- $ targetFile = $ buildPath . '/ ' . $ relativePath ;
128+ $ targetFile = $ buildPath. '/ ' . $ relativePath ;
129129
130130 // Create target directory if it doesn't exist
131131 $ targetDir = dirname ($ targetFile );
132- if (!is_dir ($ targetDir )) {
132+ if (! is_dir ($ targetDir )) {
133133 $ filesystem ->mkdir ($ targetDir , 0755 );
134134 }
135135
@@ -148,5 +148,4 @@ private function copyIncludedFiles(): void
148148 }
149149 }
150150 }
151-
152151}
You can’t perform that action at this time.
0 commit comments