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/Namespaces/NamespaceDeclaration/correct2.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -2,8 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace SomeNamespace;
4 4
 
5
-use PHP_CodeSniffer;
6
-
7 5
 
8 6
 class SomeClass
9 7
 {
Please login to merge, or discard this patch.
tests/Sniffs/Namespaces/UseDeclaration/correct2.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -2,9 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace SomeNamespace;
4 4
 
5
-use Sth;
6
-use SthElse;
7
-
8 5
 
9 6
 class SomeClass
10 7
 {
Please login to merge, or discard this patch.
tests/Sniffs/Namespaces/UseDeclaration/wrong.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -2,8 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace SomeNamespace;
4 4
 
5
-use Sth, SthElse;
6
-
7 5
 
8 6
 class SomeClass
9 7
 {
Please login to merge, or discard this patch.
tests/Sniffs/Namespaces/UseDeclaration/wrong2.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -2,9 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace SomeNamespace;
4 4
 
5
-use Sth,
6
-	SthElse;
7
-
8 5
 
9 6
 class SomeClass
10 7
 {
Please login to merge, or discard this patch.
tests/Sniffs/Namespaces/UseDeclaration/wrong3.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -2,8 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace SomeNamespace;
4 4
 
5
-use Sth;
6
-
7 5
 class SomeClass
8 6
 {
9 7
 
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.