function AbstractPhpProcess::settingsToParameters
Return value
list<string>
1 call to AbstractPhpProcess::settingsToParameters()
- AbstractPhpProcess::getCommand in vendor/
phpunit/ phpunit/ src/ Util/ PHP/ AbstractPhpProcess.php - Returns the command based into the configurations.
File
-
vendor/
phpunit/ phpunit/ src/ Util/ PHP/ AbstractPhpProcess.php, line 220
Class
- AbstractPhpProcess
- @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
Namespace
PHPUnit\Util\PHPCode
protected function settingsToParameters(array $settings) : array {
$buffer = [];
foreach ($settings as $setting) {
$buffer[] = '-d';
$buffer[] = $setting;
}
return $buffer;
}