Completed
Push — develop ( fbdd82...317691 )
by Mike
09:29
created
src/Application/Console/Command/RunCommand.php 1 patch
Unused Use Statements   -5 removed lines patch added patch discarded remove patch
@@ -25,12 +25,7 @@
 block discarded – undo
25 25
 use phpDocumentor\Renderer\RenderActionCompleted;
26 26
 use phpDocumentor\Renderer\RenderingFinished;
27 27
 use phpDocumentor\Renderer\RenderingStarted;
28
-use Stash\Driver\FileSystem;
29 28
 use Symfony\Component\Console\Command\Command;
30
-use Symfony\Component\Console\Helper\HelperInterface;
31
-use Symfony\Component\Console\Helper\ProgressBar;
32
-use Symfony\Component\Console\Helper\ProgressHelper;
33
-use Symfony\Component\Console\Input\ArrayInput;
34 29
 use Symfony\Component\Console\Input\InputArgument;
35 30
 use Symfony\Component\Console\Input\InputInterface;
36 31
 use Symfony\Component\Console\Input\InputOption;
Please login to merge, or discard this patch.
src/Application/Renderer/StructureXmlRenderer.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -13,8 +13,6 @@
 block discarded – undo
13 13
 
14 14
 use DomainModel\Renderer;
15 15
 use phpDocumentor\DomainModel\Path;
16
-use phpDocumentor\Application\Renderer\Template\Action;
17
-use phpDocumentor\Application\Renderer\Template\Action\Xml;
18 16
 use phpDocumentor\Application\Renderer\StructureXmlRenderer\ArgumentConverter;
19 17
 use phpDocumentor\Application\Renderer\StructureXmlRenderer\ConstantConverter;
20 18
 use phpDocumentor\Application\Renderer\StructureXmlRenderer\DocBlockConverter;
Please login to merge, or discard this patch.
src/Application/Renderer/StructureXmlRenderer/ArgumentConverter.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,6 @@
 block discarded – undo
15 15
 use phpDocumentor\Descriptor\DescriptorAbstract;
16 16
 use PhpParser\Node;
17 17
 use PhpParser\PrettyPrinter\Standard;
18
-use PhpParser\PrettyPrinterTest;
19 18
 
20 19
 /**
21 20
  * Converter used to create an XML Element representing a method or function argument.
Please login to merge, or discard this patch.
src/DomainModel/Renderer/Router/Renderer.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 namespace phpDocumentor\DomainModel\Renderer\Router;
4 4
 
5 5
 use phpDocumentor\Descriptor\Collection;
6
-use phpDocumentor\Descriptor\DescriptorAbstract;
7 6
 use phpDocumentor\Descriptor\Type\CollectionDescriptor;
8 7
 
9 8
 /**
Please login to merge, or discard this patch.
DomainModel/Parser/Documentation/Api/DocumentGroupDefinitionFactoryTest.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,6 @@
 block discarded – undo
13 13
 namespace phpDocumentor\ApiReference;
14 14
 
15 15
 use Flyfinder\Specification\SpecificationInterface;
16
-use League\Flysystem\Filesystem;
17 16
 use Mockery as m;
18 17
 use phpDocumentor\DocumentGroupFormat;
19 18
 use phpDocumentor\FileSystemFactory;
Please login to merge, or discard this patch.
src/Application/ContainerDefinitions.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -54,7 +54,6 @@
 block discarded – undo
54 54
 use phpDocumentor\Application\Renderer\Router\StandardRouter;
55 55
 use phpDocumentor\Infrastructure\SpecificationFactory;
56 56
 use phpDocumentor\DomainModel\Uri;
57
-use phpDocumentor\Application\ReadModel;
58 57
 use phpDocumentor\Application\ReadModel\FromContainerFactory;
59 58
 use phpDocumentor\Application\ReadModel\Mappers\Project;
60 59
 use Stash\Driver\FileSystem;
Please login to merge, or discard this patch.
src/Application/Parser/Documentation/Api/FromReflectionFactory.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,6 @@
 block discarded – undo
21 21
 use phpDocumentor\DomainModel\Parser\Documentation\DocumentGroup\Definition as DocumentGroupDefinitionInterface;
22 22
 use phpDocumentor\DomainModel\Parser\Documentation\DocumentGroupFactory;
23 23
 use phpDocumentor\Reflection\ProjectFactory;
24
-use phpDocumentor\Reflection\Php\Factory\File;
25 24
 
26 25
 final class FromReflectionFactory implements DocumentGroupFactory
27 26
 {
Please login to merge, or discard this patch.
src/Application/RenderHandler.php 1 patch
Unused Use Statements   -5 removed lines patch added patch discarded remove patch
@@ -12,12 +12,9 @@  discard block
 block discarded – undo
12 12
 
13 13
 namespace phpDocumentor\Application;
14 14
 
15
-use League\Event\Emitter;
16 15
 use League\Event\EmitterInterface;
17 16
 use League\Flysystem\Filesystem;
18 17
 use League\Tactician\CommandBus;
19
-use phpDocumentor\Application\Configuration\ConfigurationFactory;
20
-use phpDocumentor\DomainModel\Dsn;
21 18
 use phpDocumentor\Application\Render;
22 19
 use phpDocumentor\DomainModel\Parser\Documentation;
23 20
 use phpDocumentor\DomainModel\ReadModel\ReadModels;
@@ -25,7 +22,6 @@  discard block
 block discarded – undo
25 22
 use phpDocumentor\DomainModel\Renderer\Template\Action;
26 23
 use phpDocumentor\DomainModel\Uri;
27 24
 use phpDocumentor\Infrastructure\FileSystemFactory;
28
-use phpDocumentor\DomainModel\Path;
29 25
 use phpDocumentor\DomainModel\Renderer\Template;
30 26
 use phpDocumentor\DomainModel\Renderer\TemplateFactory;
31 27
 use phpDocumentor\DomainModel\Renderer\RenderContext;
@@ -33,7 +29,6 @@  discard block
 block discarded – undo
33 29
 use phpDocumentor\DomainModel\Renderer\RenderingFinished;
34 30
 use phpDocumentor\DomainModel\Renderer\RenderingStarted;
35 31
 use phpDocumentor\Infrastructure\Renderer\FlySystemArtefacts;
36
-use phpDocumentor\Infrastructure\Renderer\FlySystemAssets;
37 32
 
38 33
 final class RenderHandler
39 34
 {
Please login to merge, or discard this patch.
tests/unit/Application/ConfigureCacheHandlerTest.php 1 patch
Unused Use Statements   -4 removed lines patch added patch discarded remove patch
@@ -13,11 +13,7 @@
 block discarded – undo
13 13
 namespace phpDocumentor\Application;
14 14
 
15 15
 use Mockery as m;
16
-use org\bovigo\vfs\vfsStream;
17
-use phpDocumentor\Application\Configuration\ConfigurationFactory;
18
-use phpDocumentor\Application\Configuration\Factory\Strategy;
19 16
 use phpDocumentor\DomainModel\Path;
20
-use phpDocumentor\DomainModel\Uri;
21 17
 use PHPUnit_Framework_TestCase;
22 18
 use Stash\Pool;
23 19
 
Please login to merge, or discard this patch.