Completed
Pull Request — master (#41)
by Tomáš
07:50 queued 04:44
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.