Completed
Branch master (a69c65)
by Greg
04:32
created
examples/RoboFile.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -1,8 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 use Robo\Result;
3 3
 use Robo\ResultData;
4
-use Robo\Collection\CollectionBuilder;
5
-
6 4
 use Consolidation\OutputFormatters\StructuredData\RowsOfFields;
7 5
 
8 6
 /**
Please login to merge, or discard this patch.
RoboFile.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,5 @@
 block discarded – undo
1 1
 <?php
2 2
 use Symfony\Component\Finder\Finder;
3
-use Robo\Result;
4
-use Robo\Collection\CollectionBuilder;
5 3
 
6 4
 class RoboFile extends \Robo\Tasks
7 5
 {
Please login to merge, or discard this patch.
src/Collection/Collection.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -11,9 +11,6 @@
 block discarded – undo
11 11
 use Robo\Exception\TaskException;
12 12
 use Robo\Exception\TaskExitException;
13 13
 use Robo\Contract\CommandInterface;
14
-
15
-
16
-use Robo\Common\ProgressIndicatorAwareTrait;
17 14
 use Robo\Contract\InflectionInterface;
18 15
 
19 16
 /**
Please login to merge, or discard this patch.
src/Collection/CollectionBuilder.php 1 patch
Unused Use Statements   -4 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@  discard block
 block discarded – undo
2 2
 namespace Robo\Collection;
3 3
 
4 4
 use Robo\Config;
5
-use Robo\Common\Timer;
6 5
 use Psr\Log\LogLevel;
7 6
 use Robo\Contract\TaskInterface;
8 7
 use Robo\Contract\CompletionInterface;
@@ -12,13 +11,10 @@  discard block
 block discarded – undo
12 11
 use Robo\Task\Simulator;
13 12
 use Robo\Collection\CompletionWrapper;
14 13
 use Robo\Collection\Temporary;
15
-use Robo\Contract\ConfigAwareInterface;
16
-use Robo\Common\ConfigAwareTrait;
17 14
 use ReflectionClass;
18 15
 use Robo\Task\BaseTask;
19 16
 use Robo\Contract\BuilderAwareInterface;
20 17
 use Robo\Contract\CommandInterface;
21
-use Robo\Exception\TaskException;
22 18
 
23 19
 /**
24 20
  * Creates a collection, and adds tasks to it.  The collection builder
Please login to merge, or discard this patch.
src/Collection/Temporary.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 Robo\Collection;
4 4
 
5
-use Robo\Contract\TaskInterface;
6
-
7 5
 /**
8 6
  * The temporary collection keeps track of the global collection of
9 7
  * temporary cleanup tasks in instances where temporary-generating
Please login to merge, or discard this patch.
src/Common/TaskIO.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,6 @@
 block discarded – undo
6 6
 use Consolidation\Log\ConsoleLogLevel;
7 7
 use Robo\Common\ConfigAwareTrait;
8 8
 use Psr\Log\LoggerAwareTrait;
9
-use Psr\Log\LoggerInterface;
10 9
 use Psr\Log\LogLevel;
11 10
 use Robo\Contract\ProgressIndicatorAwareInterface;
12 11
 
Please login to merge, or discard this patch.
src/Log/ResultPrinter.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -2,13 +2,10 @@
 block discarded – undo
2 2
 namespace Robo\Log;
3 3
 
4 4
 use Robo\Result;
5
-use Robo\TaskInfo;
6 5
 use Robo\Contract\PrintedInterface;
7 6
 use Robo\Contract\ProgressIndicatorAwareInterface;
8 7
 use Robo\Common\ProgressIndicatorAwareTrait;
9
-
10 8
 use Psr\Log\LogLevel;
11
-use Psr\Log\LoggerInterface;
12 9
 use Psr\Log\LoggerAwareInterface;
13 10
 use Psr\Log\LoggerAwareTrait;
14 11
 use Consolidation\Log\ConsoleLogLevel;
Please login to merge, or discard this patch.
src/Result.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@
 block discarded – undo
2 2
 namespace Robo;
3 3
 
4 4
 use Robo\Contract\TaskInterface;
5
-use Robo\Contract\LogResultInterface;
6 5
 use Robo\Exception\TaskExitException;
7 6
 
8 7
 class Result extends ResultData
Please login to merge, or discard this patch.
src/Robo.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 League\Container\Container;
5 5
 use League\Container\ContainerInterface;
6
-
7 6
 use Symfony\Component\Console\Input\InputInterface;
8 7
 use Symfony\Component\Console\Output\OutputInterface;
9 8
 use Symfony\Component\Console\Input\StringInput;
Please login to merge, or discard this patch.