Completed
Pull Request — master (#129)
by Alexander
09:48
created
src/SVNBuddy/Command/ConfigCommand.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,9 +11,9 @@
 block discarded – undo
11 11
 namespace ConsoleHelpers\SVNBuddy\Command;
12 12
 
13 13
 
14
-use ConsoleHelpers\SVNBuddy\Config\ArrayConfigSetting;
15 14
 use ConsoleHelpers\ConsoleKit\Config\ConfigEditor;
16 15
 use ConsoleHelpers\SVNBuddy\Config\AbstractConfigSetting;
16
+use ConsoleHelpers\SVNBuddy\Config\ArrayConfigSetting;
17 17
 use ConsoleHelpers\SVNBuddy\Config\ChoiceConfigSetting;
18 18
 use ConsoleHelpers\SVNBuddy\InteractiveEditor;
19 19
 use Stecman\Component\Symfony\Console\BashCompletion\CompletionContext;
Please login to merge, or discard this patch.
src/SVNBuddy/Command/LogCommand.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,10 +11,10 @@
 block discarded – undo
11 11
 namespace ConsoleHelpers\SVNBuddy\Command;
12 12
 
13 13
 
14
+use ConsoleHelpers\ConsoleKit\Exception\CommandException;
14 15
 use ConsoleHelpers\SVNBuddy\Config\AbstractConfigSetting;
15 16
 use ConsoleHelpers\SVNBuddy\Config\IntegerConfigSetting;
16 17
 use ConsoleHelpers\SVNBuddy\Config\RegExpsConfigSetting;
17
-use ConsoleHelpers\ConsoleKit\Exception\CommandException;
18 18
 use ConsoleHelpers\SVNBuddy\Repository\Parser\RevisionListParser;
19 19
 use ConsoleHelpers\SVNBuddy\Repository\RevisionLog\RevisionLog;
20 20
 use ConsoleHelpers\SVNBuddy\Repository\RevisionLog\RevisionPrinter;
Please login to merge, or discard this patch.
src/SVNBuddy/Command/MergeCommand.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,11 +11,11 @@
 block discarded – undo
11 11
 namespace ConsoleHelpers\SVNBuddy\Command;
12 12
 
13 13
 
14
+use ConsoleHelpers\ConsoleKit\Exception\CommandException;
14 15
 use ConsoleHelpers\SVNBuddy\Config\AbstractConfigSetting;
15 16
 use ConsoleHelpers\SVNBuddy\Config\ArrayConfigSetting;
16 17
 use ConsoleHelpers\SVNBuddy\Config\ChoiceConfigSetting;
17 18
 use ConsoleHelpers\SVNBuddy\Config\StringConfigSetting;
18
-use ConsoleHelpers\ConsoleKit\Exception\CommandException;
19 19
 use ConsoleHelpers\SVNBuddy\Helper\OutputHelper;
20 20
 use ConsoleHelpers\SVNBuddy\MergeSourceDetector\AbstractMergeSourceDetector;
21 21
 use ConsoleHelpers\SVNBuddy\Repository\Connector\UrlResolver;
Please login to merge, or discard this patch.
src/SVNBuddy/Repository/RevisionLog/DatabaseManager.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,8 +14,8 @@
 block discarded – undo
14 14
 use Aura\Sql\ExtendedPdo;
15 15
 use Aura\Sql\ExtendedPdoInterface;
16 16
 use ConsoleHelpers\ConsoleKit\ConsoleIO;
17
-use ConsoleHelpers\DatabaseMigration\MigrationManager;
18 17
 use ConsoleHelpers\DatabaseMigration\MigrationContext;
18
+use ConsoleHelpers\DatabaseMigration\MigrationManager;
19 19
 use ConsoleHelpers\SVNBuddy\Database\StatementProfiler;
20 20
 use ConsoleHelpers\SVNBuddy\Repository\Connector\Connector;
21 21
 
Please login to merge, or discard this patch.
src/SVNBuddy/Command/AggregateCommand.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,9 +11,9 @@
 block discarded – undo
11 11
 namespace ConsoleHelpers\SVNBuddy\Command;
12 12
 
13 13
 
14
+use ConsoleHelpers\ConsoleKit\Exception\CommandException;
14 15
 use ConsoleHelpers\SVNBuddy\Config\AbstractConfigSetting;
15 16
 use ConsoleHelpers\SVNBuddy\Config\PathsConfigSetting;
16
-use ConsoleHelpers\ConsoleKit\Exception\CommandException;
17 17
 use Stecman\Component\Symfony\Console\BashCompletion\CompletionContext;
18 18
 use Symfony\Component\Console\Application;
19 19
 use Symfony\Component\Console\Command\Command;
Please login to merge, or discard this patch.
src/SVNBuddy/Command/SelfUpdateCommand.php 1 patch
Unused Use Statements   -4 removed lines patch added patch discarded remove patch
@@ -11,18 +11,14 @@
 block discarded – undo
11 11
 namespace ConsoleHelpers\SVNBuddy\Command;
12 12
 
13 13
 
14
-use ConsoleHelpers\ConsoleKit\Config\ConfigEditor;
15 14
 use ConsoleHelpers\ConsoleKit\Exception\CommandException;
16 15
 use ConsoleHelpers\SVNBuddy\Process\ProcessFactory;
17 16
 use ConsoleHelpers\SVNBuddy\Updater\Stability;
18 17
 use ConsoleHelpers\SVNBuddy\Updater\UpdateManager;
19 18
 use ConsoleHelpers\SVNBuddy\Updater\Updater;
20
-use ConsoleHelpers\SVNBuddy\Updater\VersionUpdateStrategy;
21 19
 use Symfony\Component\Console\Input\InputInterface;
22 20
 use Symfony\Component\Console\Input\InputOption;
23 21
 use Symfony\Component\Console\Output\OutputInterface;
24
-use Symfony\Component\Process\PhpExecutableFinder;
25
-use Symfony\Component\Process\ProcessBuilder;
26 22
 
27 23
 class SelfUpdateCommand extends AbstractCommand
28 24
 {
Please login to merge, or discard this patch.
src/SVNBuddy/Command/Dev/MigrationCreateCommand.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,8 +11,8 @@
 block discarded – undo
11 11
 namespace ConsoleHelpers\SVNBuddy\Command\Dev;
12 12
 
13 13
 
14
-use ConsoleHelpers\SVNBuddy\Command\AbstractCommand;
15 14
 use ConsoleHelpers\DatabaseMigration\MigrationManager;
15
+use ConsoleHelpers\SVNBuddy\Command\AbstractCommand;
16 16
 use Stecman\Component\Symfony\Console\BashCompletion\CompletionContext;
17 17
 use Symfony\Component\Console\Input\InputArgument;
18 18
 use Symfony\Component\Console\Input\InputInterface;
Please login to merge, or discard this patch.
src/SVNBuddy/Repository/Connector/Connector.php 1 patch
Unused Use Statements   +1 added lines, -3 removed lines patch added patch discarded remove patch
@@ -11,11 +11,9 @@
 block discarded – undo
11 11
 namespace ConsoleHelpers\SVNBuddy\Repository\Connector;
12 12
 
13 13
 
14
-use ConsoleHelpers\ConsoleKit\ConsoleIO;
15
-use ConsoleHelpers\SVNBuddy\Cache\CacheManager;
16 14
 use ConsoleHelpers\ConsoleKit\Config\ConfigEditor;
15
+use ConsoleHelpers\ConsoleKit\ConsoleIO;
17 16
 use ConsoleHelpers\SVNBuddy\Exception\RepositoryCommandException;
18
-use ConsoleHelpers\SVNBuddy\Process\IProcessFactory;
19 17
 use ConsoleHelpers\SVNBuddy\Repository\Parser\RevisionListParser;
20 18
 
21 19
 /**
Please login to merge, or discard this patch.