We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4026f6 commit 254ec69Copy full SHA for 254ec69
examples/bootstrap.printer.php
@@ -54,7 +54,11 @@ private function parseCliArguments(): array
54
if (version_compare(Version::id(), '9.3.8', 'ge')) {
55
return (new CliParser)->parse($parameters, $shortOptions);
56
}
57
- return GetOptUtil::parse($parameters, $shortOptions);
+ if (version_compare(Version::id(), '8.5.9', 'ge')) {
58
+ // @see https://github.com/sebastianbergmann/phpunit/commit/d5d1ee19a5f04a022ae1dd00590ccf60ec269b16
59
+ return GetOptUtil::parse($parameters, $shortOptions);
60
+ }
61
+ return GetOptUtil::getopt($parameters, $shortOptions);
62
63
64
0 commit comments