aboutsummaryrefslogtreecommitdiff
path: root/cli/CliOptionsParser.php
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2025-01-31 13:59:51 +0100
committerGravatar GitHub <noreply@github.com> 2025-01-31 13:59:51 +0100
commite749490693eccd61e9ea9152fada33470e5492f7 (patch)
tree405c8c03a676f74399f21830e5e0244dac5eb8bd /cli/CliOptionsParser.php
parentf72f5e95238a866c39535932c803720d7644a276 (diff)
Pass PHPStan checkBenevolentUnionTypes (#7270)
Diffstat (limited to 'cli/CliOptionsParser.php')
-rw-r--r--cli/CliOptionsParser.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/cli/CliOptionsParser.php b/cli/CliOptionsParser.php
index 933575393..03fb68deb 100644
--- a/cli/CliOptionsParser.php
+++ b/cli/CliOptionsParser.php
@@ -24,6 +24,7 @@ abstract class CliOptionsParser {
private function parseInput(): void {
$getoptInputs = $this->getGetoptInputs();
+ // @phpstan-ignore argument.type
$this->getoptOutputTransformer(getopt($getoptInputs['short'], $getoptInputs['long']));
$this->checkForDeprecatedAliasUse();
}