Simplify config.php_path access in App->proc_run

This commit is contained in:
Hypolite Petovan 2018-07-01 04:05:52 -04:00
parent 0ee153e1bd
commit 07e06341df
1 changed files with 1 additions and 1 deletions

View File

@ -866,7 +866,7 @@ class App
return;
}
array_unshift($args, ((x($this->config, 'php_path')) && (strlen($this->config['php_path'])) ? $this->config['php_path'] : 'php'));
array_unshift($args, $this->getConfigValue('config', 'php_path', 'php'));
for ($x = 0; $x < count($args); $x ++) {
$args[$x] = escapeshellarg($args[$x]);