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 6a5eac7 commit b93d2bfCopy full SHA for b93d2bf
src/Symfony/Component/Process/ExecutableFinder.php
@@ -51,10 +51,7 @@ public function addSuffix($suffix)
51
public function find($name, $default = null, array $extraDirs = [])
52
{
53
if (ini_get('open_basedir')) {
54
- $searchPath = array_merge(
55
- explode(PATH_SEPARATOR, ini_get('open_basedir')),
56
- $extraDirs
57
- );
+ $searchPath = array_merge(explode(PATH_SEPARATOR, ini_get('open_basedir')), $extraDirs);
58
$dirs = [];
59
foreach ($searchPath as $path) {
60
// Silencing against https://bugs.php.net/69240
0 commit comments