Test Failed
Push — master ( 72a6c5...9329b7 )
by Arun
03:52
created
vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Example.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -12,8 +12,6 @@
 block discarded – undo
12 12
 
13 13
 namespace phpDocumentor\Reflection\DocBlock\Tags;
14 14
 
15
-use phpDocumentor\Reflection\DocBlock\Tag;
16
-
17 15
 /**
18 16
  * Reflection class for a {@}example tag in a Docblock.
19 17
  */
Please login to merge, or discard this patch.
reflection-docblock/tests/integration/ReconstitutingADocBlockTest.php 1 patch
Unused Use Statements   -5 removed lines patch added patch discarded remove patch
@@ -12,11 +12,6 @@
 block discarded – undo
12 12
 
13 13
 namespace phpDocumentor\Reflection;
14 14
 
15
-use phpDocumentor\Reflection\DocBlock\Description;
16
-use phpDocumentor\Reflection\DocBlock\StandardTagFactory;
17
-use phpDocumentor\Reflection\DocBlock\Tag;
18
-use phpDocumentor\Reflection\DocBlock\Tags\See;
19
-
20 15
 /**
21 16
  * @coversNothing
22 17
  */
Please login to merge, or discard this patch.
phpdocumentor/reflection-docblock/tests/integration/UsingTagsTest.php 1 patch
Unused Use Statements   -5 removed lines patch added patch discarded remove patch
@@ -12,11 +12,6 @@
 block discarded – undo
12 12
 
13 13
 namespace phpDocumentor\Reflection;
14 14
 
15
-use phpDocumentor\Reflection\DocBlock\Description;
16
-use phpDocumentor\Reflection\DocBlock\StandardTagFactory;
17
-use phpDocumentor\Reflection\DocBlock\Tag;
18
-use phpDocumentor\Reflection\DocBlock\Tags\See;
19
-
20 15
 /**
21 16
  * @coversNothing
22 17
  */
Please login to merge, or discard this patch.
phpdocumentor/reflection-docblock/tests/unit/DocBlock/SerializerTest.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,6 @@
 block discarded – undo
12 12
 
13 13
 namespace phpDocumentor\Reflection\DocBlock;
14 14
 
15
-use Mockery as m;
16 15
 use phpDocumentor\Reflection\DocBlock;
17 16
 
18 17
 /**
Please login to merge, or discard this patch.
vendor/phpdocumentor/type-resolver/examples/Classy.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace My\Example;
4 4
 
5
-use Mockery as m;
6 5
 use phpDocumentor\Reflection\Types;
7 6
 
8 7
 class Classy
Please login to merge, or discard this patch.
vendor/phpunit/php-text-template/src/Template.php 1 patch
Braces   +2 added lines, -6 removed lines patch added patch discarded remove patch
@@ -60,13 +60,9 @@
 block discarded – undo
60 60
 
61 61
         if (file_exists($file)) {
62 62
             $this->template = file_get_contents($file);
63
-        }
64
-
65
-        else if (file_exists($distFile)) {
63
+        } else if (file_exists($distFile)) {
66 64
             $this->template = file_get_contents($distFile);
67
-        }
68
-
69
-        else {
65
+        } else {
70 66
             throw new InvalidArgumentException(
71 67
               'Template file could not be loaded.'
72 68
             );
Please login to merge, or discard this patch.