Completed
Push — refresh ( f0c290...5262bf )
by Tomáš
09:20 queued 06:01
created
src/ZenifyCodingStandard/Sniffs/WhiteSpace/InBetweenMethodSpacingSniff.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -114,7 +114,7 @@
 block discarded – undo
114 114
 
115 115
 
116 116
 	/**
117
-	 * @return bool|int
117
+	 * @return integer
118 118
 	 */
119 119
 	private function getScopeCloser()
120 120
 	{
Please login to merge, or discard this patch.
tests/Sniffs/Naming/Bool/correct.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
 
24 24
 	/**
25 25
 	 * @param bool $strict Check if boolean value has changed.
26
-	 * @return bool
26
+	 * @return integer|null
27 27
 	 */
28 28
 	public function hasChanged($strict = FALSE)
29 29
 	{
Please login to merge, or discard this patch.
tests/Sniffs/Naming/Bool/wrong.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
 
19 19
 	/**
20 20
 	 * @param boolean $strict Check if boolean value has changed.
21
-	 * @return boolean
21
+	 * @return integer|null
22 22
 	 */
23 23
 	public function hasChanged($strict = FALSE)
24 24
 	{
Please login to merge, or discard this patch.
tests/Sniffs/Naming/Int/correct.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
 
23 23
 
24 24
 	/**
25
-	 * @param int $count Check if integer value is > 0.
25
+	 * @param boolean $count Check if integer value is > 0.
26 26
 	 * @return int
27 27
 	 */
28 28
 	public function hasChanged($count = 0)
Please login to merge, or discard this patch.
tests/Sniffs/Naming/Int/wrong.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
 
18 18
 
19 19
 	/**
20
-	 * @param integer $strict Check if integer value has changed.
20
+	 * @param boolean $strict Check if integer value has changed.
21 21
 	 * @return integer
22 22
 	 */
23 23
 	public function hasChanged($strict = 0)
Please login to merge, or discard this patch.
src/ZenifyCodingStandard/Sniffs/Commenting/ComponentFactoryCommentSniff.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -114,7 +114,7 @@
 block discarded – undo
114 114
 
115 115
 
116 116
 	/**
117
-	 * @return bool|int
117
+	 * @return integer
118 118
 	 */
119 119
 	private function getScopeCloser()
120 120
 	{
Please login to merge, or discard this patch.