Completed
Push — master ( 1a6e67...071a29 )
by Tomáš
02:38
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.
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.
tests/Sniffs/Namespaces/UseDeclaration/correct.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.
src/ZenifyCodingStandard/Helper/Whitespace/ClassMetrics.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
 
57 57
 
58 58
 	/**
59
-	 * @return FALSE|int
59
+	 * @return integer
60 60
 	 */
61 61
 	public function getLastUseStatementPosition()
62 62
 	{
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
 
66 66
 
67 67
 	/**
68
-	 * @return FALSE|int
68
+	 * @return integer
69 69
 	 */
70 70
 	public function getLineDistanceBetweenNamespaceAndFirstUseStatement()
71 71
 	{
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
 
86 86
 
87 87
 	/**
88
-	 * @return FALSE|int
88
+	 * @return integer
89 89
 	 */
90 90
 	public function getLineDistanceBetweenClassAndNamespace()
91 91
 	{
Please login to merge, or discard this patch.