Skip to content

Commit

Permalink
Compatibility with newer versions of Symfony (#202)
Browse files Browse the repository at this point in the history
Newer versions of Symfony Process requires an array as an constructor argument. 
Array was supported already in previous versions (since ~v4).
  • Loading branch information
tmotyl committed Apr 20, 2022
1 parent 114377c commit 3353f06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/MagentoHackathon/Composer/Magento/Plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ protected function deployLibraries()

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

$process = new Process($executable . $params);
$process = new Process([$executable, $params]);
$process->run();
}
}
Expand Down

0 comments on commit 3353f06

Please sign in to comment.