Completed
Pull Request — master (#499)
by .
03:00
created
tests/unit/OutputTest.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,5 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-use AspectMock\Test as test;
4 3
 use Robo\Robo;
5 4
 
6 5
 class RsyncTest extends \Codeception\TestCase\Test
Please login to merge, or discard this patch.
tests/unit/Task/HgTest.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,5 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-use AspectMock\Test as test;
4 3
 use Robo\Robo;
5 4
 
6 5
 class RsyncTest extends \Codeception\TestCase\Test
Please login to merge, or discard this patch.
examples/RoboFile.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
 use Robo\Result;
3
-use Robo\ResultData;
4
-use Robo\Collection\CollectionBuilder;
5
-
6 3
 use Consolidation\OutputFormatters\StructuredData\RowsOfFields;
7 4
 
8 5
 /**
Please login to merge, or discard this patch.
tests/unit/ApplicationTest.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 
4 4
 use Robo\Robo;
5 5
 use Robo\Runner;
6
-use League\Container\Container;
7 6
 use Consolidation\AnnotatedCommand\AnnotatedCommandFactory;
8 7
 use Consolidation\AnnotatedCommand\Parser\CommandInfo;
9 8
 
Please login to merge, or discard this patch.
src/Collection/CollectionBuilder.php 1 patch
Unused Use Statements   -5 removed lines patch added patch discarded remove patch
@@ -1,9 +1,7 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 namespace Robo\Collection;
3 3
 
4
-use Guzzle\Inflection\InflectorInterface;
5 4
 use Robo\Config;
6
-use Robo\Common\Timer;
7 5
 use Psr\Log\LogLevel;
8 6
 use Robo\Contract\InflectionInterface;
9 7
 use Robo\Contract\TaskInterface;
@@ -14,13 +12,10 @@  discard block
 block discarded – undo
14 12
 use Robo\Task\Simulator;
15 13
 use Robo\Collection\CompletionWrapper;
16 14
 use Robo\Collection\Temporary;
17
-use Robo\Contract\ConfigAwareInterface;
18
-use Robo\Common\ConfigAwareTrait;
19 15
 use ReflectionClass;
20 16
 use Robo\Task\BaseTask;
21 17
 use Robo\Contract\BuilderAwareInterface;
22 18
 use Robo\Contract\CommandInterface;
23
-use Robo\Exception\TaskException;
24 19
 
25 20
 /**
26 21
  * Creates a collection, and adds tasks to it.  The collection builder
Please login to merge, or discard this patch.
src/Runner.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -1,15 +1,12 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace Robo;
3 3
 
4
-use League\Container\Container;
5 4
 use Symfony\Component\Console\Input\InputInterface;
6 5
 use Symfony\Component\Console\Input\ArgvInput;
7 6
 use Symfony\Component\Console\Input\StringInput;
8
-use Consolidation\AnnotatedCommand\PassThroughArgsInput;
9 7
 use Robo\Contract\BuilderAwareInterface;
10 8
 use Robo\Common\IO;
11 9
 use Robo\Exception\TaskExitException;
12
-use League\Container\ContainerInterface;
13 10
 use League\Container\ContainerAwareInterface;
14 11
 use League\Container\ContainerAwareTrait;
15 12
 
Please login to merge, or discard this patch.
src/Task/Development/Changelog.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -2,8 +2,6 @@
 block discarded – undo
2 2
 namespace Robo\Task\Development;
3 3
 
4 4
 use Robo\Task\BaseTask;
5
-use Robo\Task\File\Replace;
6
-use Robo\Task\Filesystem;
7 5
 use Robo\Result;
8 6
 use Robo\Task\Development;
9 7
 use Robo\Contract\BuilderAwareInterface;
Please login to merge, or discard this patch.
src/Task/Development/GenerateMarkdownDoc.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -2,8 +2,6 @@
 block discarded – undo
2 2
 namespace Robo\Task\Development;
3 3
 
4 4
 use Robo\Task\BaseTask;
5
-use Robo\Task\File\Write;
6
-use Robo\Task\Filesystem;
7 5
 use Robo\Result;
8 6
 use Robo\Task\Development;
9 7
 use Robo\Contract\BuilderAwareInterface;
Please login to merge, or discard this patch.
src/Task/Filesystem/FilesystemStack.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,6 @@
 block discarded – undo
4 4
 use Robo\Result;
5 5
 use Robo\Task\StackBasedTask;
6 6
 use Symfony\Component\Filesystem\Filesystem as sfFilesystem;
7
-use Symfony\Component\Filesystem\Exception\IOExceptionInterface;
8 7
 use Symfony\Component\Filesystem\Exception\IOException;
9 8
 use Robo\Contract\BuilderAwareInterface;
10 9
 use Robo\Common\BuilderAwareTrait;
Please login to merge, or discard this patch.