Completed
Pull Request — master (#39)
by
unknown
09:03
created
src/ZenifyCodingStandard/Sniffs/Commenting/ComponentFactoryCommentSniff.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@
 block discarded – undo
80 80
 
81 81
 
82 82
 	/**
83
-	 * @return bool|int
83
+	 * @return integer
84 84
 	 */
85 85
 	private function getCommentEnd()
86 86
 	{
Please login to merge, or discard this patch.
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/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
 
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/Namespaces/UseInAlphabeticalOrder/correct2.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,5 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-use My\Other;
4
-use MyNamespace\SthEsle;
5
-
6 3
 
7 4
 class Presenter
8 5
 {
Please login to merge, or discard this patch.