$command of type string is incompatible with the type array expected by parameter $command of Symfony\Component\Process\Process::__construct().
(
Ignorable by Annotation
)
If this is a false-positive, you can also ignore this issue in your code via the ignore-type annotation
56
/** @scrutinizer ignore-type */ $command,
Loading history...
57
static::CWD,
58
$this->compileEnvironmentVariables()
59
);
60
61
$process->setTimeout(0);
62
63
$process->run(function ($_, $buffer) {
64
echo $buffer;
65
});
66
67
return $process;
68
}
69
70
/**
71
* @return array
72
*/
73
protected function compileEnvironmentVariables(): array