@@ -18,7 +18,7 @@ |
||
18 | 18 | class testRuleIgnoresParametersWhenNotExplicitConfigured |
19 | 19 | { |
20 | 20 | /** |
21 | - * @return boolean |
|
21 | + * @return boolean|null |
|
22 | 22 | */ |
23 | 23 | function getBaz($foo) {} |
24 | 24 | } |
@@ -18,7 +18,7 @@ |
||
18 | 18 | class testRuleNotAppliesToMethodStartingWithHas |
19 | 19 | { |
20 | 20 | /** |
21 | - * @return boolean |
|
21 | + * @return boolean|null |
|
22 | 22 | */ |
23 | 23 | function hasX() {} |
24 | 24 | } |
@@ -18,7 +18,7 @@ |
||
18 | 18 | class testRuleNotAppliesToMethodStartingWithIs |
19 | 19 | { |
20 | 20 | /** |
21 | - * @return boolean |
|
21 | + * @return boolean|null |
|
22 | 22 | */ |
23 | 23 | function isBaz() {} |
24 | 24 | } |
@@ -18,7 +18,7 @@ |
||
18 | 18 | class testRuleNotAppliesWhenParametersAreExplicitEnabled |
19 | 19 | { |
20 | 20 | /** |
21 | - * @return boolean |
|
21 | + * @return boolean|null |
|
22 | 22 | */ |
23 | 23 | public function getBaz($foo) {} |
24 | 24 | } |