Skip to content

Commit 3353f06

Browse files
authored
Compatibility with newer versions of Symfony (#202)
Newer versions of Symfony Process requires an array as an constructor argument. Array was supported already in previous versions (since ~v4).
1 parent 114377c commit 3353f06

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/MagentoHackathon/Composer/Magento/Plugin.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@ protected function deployLibraries()
369369

370370
$params = $this->getTheseerAutoloadParams($libraryPath, $autoloadDirectories);
371371

372-
$process = new Process($executable . $params);
372+
$process = new Process([$executable, $params]);
373373
$process->run();
374374
}
375375
}

0 commit comments

Comments
 (0)