fix: no duplicate --no-output

This commit is contained in:
Nuno Maduro
2024-03-14 19:39:45 +00:00
parent 1b68b340e8
commit 521a41dd10

View File

@ -22,6 +22,10 @@ final class Printer implements HandlesArguments
return $arguments;
}
if (in_array('--no-output', $arguments, true)) {
return $arguments;
}
return $this->pushArgument('--no-output', $arguments);
}
}