diff --git a/Helper/ProcessHelper.php b/Helper/ProcessHelper.php index 31f2da3b3..f519919a7 100644 --- a/Helper/ProcessHelper.php +++ b/Helper/ProcessHelper.php @@ -39,7 +39,7 @@ class ProcessHelper extends Helper public function run(OutputInterface $output, $cmd, $error = null, callable $callback = null, $verbosity = OutputInterface::VERBOSITY_VERY_VERBOSE) { if (!class_exists(Process::class)) { - throw new \LogicException('The Process helper requires the "Process" component. Install "symfony/process" to use it.'); + throw new \LogicException('The ProcessHelper cannot be run as the Process component is not installed. Try running "compose require symfony/process".'); } if ($output instanceof ConsoleOutputInterface) {