Test Failed
Push — master ( 75ff29...35f862 )
by Andru
59s
created
BooleanGetMethodName/testRuleIgnoresParametersWhenNotExplicitConfigured.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
 class testRuleIgnoresParametersWhenNotExplicitConfigured
19 19
 {
20 20
     /**
21
-     * @return boolean
21
+     * @return boolean|null
22 22
      */
23 23
     function getBaz($foo) {}
24 24
 }
Please login to merge, or discard this patch.
Naming/BooleanGetMethodName/testRuleNotAppliesToMethodStartingWithHas.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
 class testRuleNotAppliesToMethodStartingWithHas
19 19
 {
20 20
     /**
21
-     * @return boolean
21
+     * @return boolean|null
22 22
      */
23 23
     function hasX() {}
24 24
 }
Please login to merge, or discard this patch.
Naming/BooleanGetMethodName/testRuleNotAppliesToMethodStartingWithIs.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
 class testRuleNotAppliesToMethodStartingWithIs
19 19
 {
20 20
     /**
21
-     * @return boolean
21
+     * @return boolean|null
22 22
      */
23 23
     function isBaz() {}
24 24
 }
Please login to merge, or discard this patch.
BooleanGetMethodName/testRuleNotAppliesWhenParametersAreExplicitEnabled.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.