Skip to content

Commit

Permalink
Various cleanups
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolas-grekas committed May 30, 2020
1 parent 6ad3319 commit bfe29ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Helper/ProcessHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,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 bfe29ea

Please sign in to comment.