Completed
Push — develop ( 9193e7...62056c )
by Jaap
12:45 queued 02:43
created
Validator/Constraints/Functions/DoesArgumentNameMatchParamValidator.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -11,9 +11,6 @@
 block discarded – undo
11 11
 
12 12
 namespace phpDocumentor\Plugin\Core\Descriptor\Validator\Constraints\Functions;
13 13
 
14
-use phpDocumentor\Descriptor\MethodDescriptor;
15
-use phpDocumentor\Descriptor\FunctionDescriptor;
16
-use phpDocumentor\Descriptor\Tag\ParamDescriptor;
17 14
 use Symfony\Component\Validator\Constraint;
18 15
 use Symfony\Component\Validator\ConstraintValidator;
19 16
 use Symfony\Component\Validator\Exception\ConstraintDefinitionException;
Please login to merge, or discard this patch.
Validator/Constraints/Functions/DoesArgumentTypehintMatchParamValidator.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -11,8 +11,6 @@
 block discarded – undo
11 11
 
12 12
 namespace phpDocumentor\Plugin\Core\Descriptor\Validator\Constraints\Functions;
13 13
 
14
-use phpDocumentor\Descriptor\MethodDescriptor;
15
-use phpDocumentor\Descriptor\FunctionDescriptor;
16 14
 use phpDocumentor\Descriptor\Tag\ParamDescriptor;
17 15
 use Symfony\Component\Validator\Constraint;
18 16
 use Symfony\Component\Validator\ConstraintValidator;
Please login to merge, or discard this patch.
Validator/Constraints/Functions/IsArgumentInDocBlockValidator.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -13,11 +13,8 @@
 block discarded – undo
13 13
 
14 14
 use phpDocumentor\Descriptor\ArgumentDescriptor;
15 15
 use phpDocumentor\Descriptor\Collection;
16
-use phpDocumentor\Descriptor\MethodDescriptor;
17
-use phpDocumentor\Descriptor\FunctionDescriptor;
18 16
 use Symfony\Component\Validator\Constraint;
19 17
 use Symfony\Component\Validator\ConstraintValidator;
20
-use Symfony\Component\Validator\Exception\ConstraintDefinitionException;
21 18
 use phpDocumentor\Plugin\Core\Descriptor\Validator\ValidationValueObject;
22 19
 
23 20
 /**
Please login to merge, or discard this patch.
src/phpDocumentor/Plugin/Core/Transformer/Writer/Xsl.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,6 @@
 block discarded – undo
19 19
 use phpDocumentor\Transformer\Event\PreXslWriterEvent;
20 20
 use phpDocumentor\Transformer\Router\ForFileProxy;
21 21
 use phpDocumentor\Transformer\Router\Queue;
22
-use phpDocumentor\Transformer\Transformation;
23 22
 use phpDocumentor\Transformer\Transformation as TransformationObject;
24 23
 use phpDocumentor\Transformer\Writer\Exception\RequirementMissing;
25 24
 use phpDocumentor\Transformer\Writer\Routable;
Please login to merge, or discard this patch.
tests/unit/phpDocumentor/Plugin/Core/Transformer/Writer/XmlTest.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,6 @@
 block discarded – undo
15 15
 
16 16
 use phpDocumentor\Descriptor\ProjectDescriptor;
17 17
 use phpDocumentor\Descriptor\DescriptorAbstract;
18
-
19 18
 use Mockery as m;
20 19
 use org\bovigo\vfs\vfsStream;
21 20
 use phpDocumentor\Transformer\Router\RouterAbstract;
Please login to merge, or discard this patch.
tests/unit/phpDocumentor/Transformer/Configuration/TransformationsTest.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -11,8 +11,6 @@
 block discarded – undo
11 11
 
12 12
 namespace phpDocumentor\Transformer\Configuration;
13 13
 
14
-use Mockery as m;
15
-
16 14
 class TransformationsTest extends \PHPUnit_Framework_TestCase
17 15
 {
18 16
     /** @var Transformations */
Please login to merge, or discard this patch.
Descriptor/Validator/Constraints/Functions/DoesParamsExistsValidator.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -11,9 +11,6 @@
 block discarded – undo
11 11
 
12 12
 namespace phpDocumentor\Plugin\Core\Descriptor\Validator\Constraints\Functions;
13 13
 
14
-use phpDocumentor\Descriptor\MethodDescriptor;
15
-use phpDocumentor\Descriptor\FunctionDescriptor;
16
-use phpDocumentor\Descriptor\Tag\ParamDescriptor;
17 14
 use Symfony\Component\Validator\Constraint;
18 15
 use Symfony\Component\Validator\ConstraintValidator;
19 16
 use Symfony\Component\Validator\Exception\ConstraintDefinitionException;
Please login to merge, or discard this patch.
tests/features/bootstrap/Ast/ApiContext.php 1 patch
Unused Use Statements   -4 removed lines patch added patch discarded remove patch
@@ -13,18 +13,14 @@
 block discarded – undo
13 13
 namespace phpDocumentor\Behat\Contexts\Ast;
14 14
 
15 15
 use Behat\Behat\Context\Context;
16
-use Behat\Behat\Hook\Scope\BeforeScenarioScope;
17 16
 use Behat\Gherkin\Node\PyStringNode;
18
-use phpDocumentor\Behat\Contexts\EnvironmentContext;
19 17
 use phpDocumentor\Descriptor\ArgumentDescriptor;
20 18
 use phpDocumentor\Descriptor\ClassDescriptor;
21 19
 use phpDocumentor\Descriptor\Collection;
22 20
 use phpDocumentor\Descriptor\DescriptorAbstract;
23 21
 use phpDocumentor\Descriptor\FileDescriptor;
24 22
 use phpDocumentor\Descriptor\MethodDescriptor;
25
-use phpDocumentor\Descriptor\ProjectDescriptor;
26 23
 use phpDocumentor\Descriptor\Tag\VersionDescriptor;
27
-use phpDocumentor\Reflection\DocBlock\Tag\SeeTag;
28 24
 use PHPUnit\Framework\Assert;
29 25
 
30 26
 class ApiContext extends BaseContext implements Context
Please login to merge, or discard this patch.
src/phpDocumentor/Command/Phar/UpdateCommand.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,6 @@
 block discarded – undo
16 16
 use Humbug\SelfUpdate\Updater;
17 17
 use phpDocumentor\Application;
18 18
 use Symfony\Component\Console\Command\Command;
19
-use Symfony\Component\Console\Input\InputArgument;
20 19
 use Symfony\Component\Console\Input\InputInterface;
21 20
 use Symfony\Component\Console\Input\InputOption;
22 21
 use Symfony\Component\Console\Output\OutputInterface;
Please login to merge, or discard this patch.