$composer . ' dump-autoload' 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
33
$process = new Process(/** @scrutinizer ignore-type */ $composer.' dump-autoload');
$composer . ' remove ' . $package 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
42
$process = new Process(/** @scrutinizer ignore-type */ $composer.' remove '.$package);
$composer . ' require ' . $package 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
53
$process = new Process(/** @scrutinizer ignore-type */ $composer.' require '.$package);