Skip to content

Commit b93d2bf

Browse files
committed
fixed CS
1 parent 6a5eac7 commit b93d2bf

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/Symfony/Component/Process/ExecutableFinder.php

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,7 @@ public function addSuffix($suffix)
5151
public function find($name, $default = null, array $extraDirs = [])
5252
{
5353
if (ini_get('open_basedir')) {
54-
$searchPath = array_merge(
55-
explode(PATH_SEPARATOR, ini_get('open_basedir')),
56-
$extraDirs
57-
);
54+
$searchPath = array_merge(explode(PATH_SEPARATOR, ini_get('open_basedir')), $extraDirs);
5855
$dirs = [];
5956
foreach ($searchPath as $path) {
6057
// Silencing against https://bugs.php.net/69240

0 commit comments

Comments
 (0)