Skip to content

Commit

Permalink
Merge branch '3.4' into 4.4
Browse files Browse the repository at this point in the history
* 3.4:
  Various cleanups
  • Loading branch information
nicolas-grekas committed May 30, 2020
2 parents 8d6da3d + bfe29ea commit 326b064
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Helper/ProcessHelper.php
Expand Up @@ -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) {
Expand Down

0 comments on commit 326b064

Please sign in to comment.