We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a3060a commit e238c89Copy full SHA for e238c89
src/Symfony/Component/Process/ExecutableFinder.php
@@ -51,7 +51,10 @@ public function addSuffix($suffix)
51
public function find($name, $default = null, array $extraDirs = [])
52
{
53
if (ini_get('open_basedir')) {
54
- $searchPath = explode(PATH_SEPARATOR, ini_get('open_basedir'));
+ $searchPath = array_merge(
55
+ explode(PATH_SEPARATOR, ini_get('open_basedir')),
56
+ $extraDirs
57
+ );
58
$dirs = [];
59
foreach ($searchPath as $path) {
60
// Silencing against https://bugs.php.net/69240
0 commit comments