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 f258583 commit 68f8f4dCopy full SHA for 68f8f4d
src/Rules/PHPUnit/PHPUnitVersion.php
@@ -51,6 +51,9 @@ public function supportsNamedArgumentsInDataProvider(): TrinaryLogic
51
52
public function requiresPhpversionAttributeWithOperator(): TrinaryLogic
53
{
54
+ if ($this->majorVersion === null) {
55
+ return TrinaryLogic::createMaybe();
56
+ }
57
return TrinaryLogic::createFromBoolean($this->majorVersion >= 13);
58
}
59
0 commit comments