diff --git a/src/Plugins/Profile.php b/src/Plugins/Profile.php index e29a7fc1..0f723a2c 100644 --- a/src/Plugins/Profile.php +++ b/src/Plugins/Profile.php @@ -19,6 +19,10 @@ final class Profile implements HandlesArguments */ public function handleArguments(array $arguments): array { + if (! $this->hasArgument('--profile', $arguments)) { + return $arguments; + } + if ($this->hasArgument('--parallel', $arguments)) { throw new InvalidOption('The [--profile] option is not supported when running in parallel.'); }