Completed
Push — master ( d0b6e5...91eaa9 )
by 39bac7f6
12:12
created
src/Generators/ComponentGenerator.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,12 +2,12 @@
 block discarded – undo
2 2
 
3 3
 namespace Consigliere\Components\Generators;
4 4
 
5
+use Consigliere\Components\Repository;
6
+use Consigliere\Components\Support\Stub;
5 7
 use Illuminate\Config\Repository as Config;
6 8
 use Illuminate\Console\Command as Console;
7 9
 use Illuminate\Filesystem\Filesystem;
8 10
 use Illuminate\Support\Str;
9
-use Consigliere\Components\Repository;
10
-use Consigliere\Components\Support\Stub;
11 11
 
12 12
 class ComponentGenerator extends Generator
13 13
 {
Please login to merge, or discard this patch.
src/Migrations/Migrator.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@
 block discarded – undo
2 2
 
3 3
 namespace Consigliere\Components\Migrations;
4 4
 
5
-use Illuminate\Support\Collection;
6 5
 use Consigliere\Components\Component;
6
+use Illuminate\Support\Collection;
7 7
 
8 8
 class Migrator
9 9
 {
Please login to merge, or discard this patch.
src/Migrations/Seeder.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace Consigliere\Components\Migrations;
4 4
 
5
-use Illuminate\Support\Collection;
6 5
 use Consigliere\Components\Component;
7 6
 
8 7
 class Seeder
Please login to merge, or discard this patch.
src/Process/Installer.php 1 patch
Unused Use Statements   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,9 +2,8 @@
 block discarded – undo
2 2
 
3 3
 namespace Consigliere\Components\Process;
4 4
 
5
-use Illuminate\Console\Command as ComponentCommand;
6
-use Illuminate\Support\Str;
7 5
 use Consigliere\Components\Repository;
6
+use Illuminate\Support\Str;
8 7
 use Symfony\Component\Process\Process;
9 8
 
10 9
 class Installer
Please login to merge, or discard this patch.
src/Publishing/Publisher.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,10 +2,10 @@
 block discarded – undo
2 2
 
3 3
 namespace Consigliere\Components\Publishing;
4 4
 
5
-use Illuminate\Console\Command;
6
-use Consigliere\Components\Contracts\PublisherInterface;
7 5
 use Consigliere\Components\Component;
6
+use Consigliere\Components\Contracts\PublisherInterface;
8 7
 use Consigliere\Components\Repository;
8
+use Illuminate\Console\Command;
9 9
 
10 10
 abstract class Publisher implements PublisherInterface
11 11
 {
Please login to merge, or discard this patch.
src/Repository.php 1 patch
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -2,13 +2,13 @@
 block discarded – undo
2 2
 
3 3
 namespace Consigliere\Components;
4 4
 
5
-use Countable;
6
-use Illuminate\Foundation\Application;
7
-use Illuminate\Support\Str;
8 5
 use Consigliere\Components\Contracts\RepositoryInterface;
9 6
 use Consigliere\Components\Exceptions\ComponentNotFoundException;
10 7
 use Consigliere\Components\Process\Installer;
11 8
 use Consigliere\Components\Process\Updater;
9
+use Countable;
10
+use Illuminate\Foundation\Application;
11
+use Illuminate\Support\Str;
12 12
 
13 13
 class Repository implements RepositoryInterface, Countable
14 14
 {
Please login to merge, or discard this patch.
src/Commands/MakeCommandCommand.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,9 +2,9 @@
 block discarded – undo
2 2
 
3 3
 namespace Consigliere\Components\Commands;
4 4
 
5
-use Illuminate\Support\Str;
6 5
 use Consigliere\Components\Support\Stub;
7 6
 use Consigliere\Components\Traits\ComponentCommandTrait;
7
+use Illuminate\Support\Str;
8 8
 use Symfony\Component\Console\Input\InputArgument;
9 9
 use Symfony\Component\Console\Input\InputOption;
10 10
 
Please login to merge, or discard this patch.
src/Commands/ModelCommand.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,9 +2,9 @@
 block discarded – undo
2 2
 
3 3
 namespace Consigliere\Components\Commands;
4 4
 
5
-use Illuminate\Support\Str;
6 5
 use Consigliere\Components\Support\Stub;
7 6
 use Consigliere\Components\Traits\ComponentCommandTrait;
7
+use Illuminate\Support\Str;
8 8
 use Symfony\Component\Console\Input\InputArgument;
9 9
 use Symfony\Component\Console\Input\InputOption;
10 10
 
Please login to merge, or discard this patch.