Completed
Push — master ( 216d8e...12bc3a )
by Fumio
09:56
created
sources/Generators/GeneratorCommandTrait.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@
 block discarded – undo
72 72
     }
73 73
 
74 74
     /**
75
-    * Get the addon namespace.
75
+     * Get the addon namespace.
76 76
      *
77 77
      * @return $string
78 78
      */
Please login to merge, or discard this patch.
sources/Generators/Commands/ModelMakeCommand.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,6 @@
 block discarded – undo
4 4
 
5 5
 use Jumilla\Generators\Laravel\OneFileGeneratorCommand as BaseCommand;
6 6
 use Jumilla\Generators\FileGenerator;
7
-use LaravelPlus\Extension\Addons\Addon;
8 7
 use LaravelPlus\Extension\Generators\GeneratorCommandTrait;
9 8
 use Illuminate\Support\Str;
10 9
 
Please login to merge, or discard this patch.
sources/Commands/AppContainerCommand.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 LaravelPlus\Extension\Commands;
4 4
 
5 5
 use Illuminate\Console\Command;
6
-use Illuminate\Foundation\Application;
7 6
 use LaravelPlus\Extension\Hooks\ApplicationHook;
8 7
 
9 8
 /**
Please login to merge, or discard this patch.
sources/Generators/Commands/ControllerMakeCommand.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,6 @@
 block discarded – undo
4 4
 
5 5
 use Jumilla\Generators\Laravel\OneFileGeneratorCommand as BaseCommand;
6 6
 use Jumilla\Generators\FileGenerator;
7
-use LaravelPlus\Extension\Addons\Addon;
8 7
 use LaravelPlus\Extension\Generators\GeneratorCommandTrait;
9 8
 use InvalidArgumentException;
10 9
 
Please login to merge, or discard this patch.
sources/Providers/ArtisanServiceProvider.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 namespace LaravelPlus\Extension\Providers;
4 4
 
5 5
 use Illuminate\Foundation\Providers\ArtisanServiceProvider as ServiceProvider;
6
-use Illuminate\Console\Scheduling\Schedule;
7 6
 use Illuminate\Console\Scheduling\ScheduleRunCommand;
8 7
 use Illuminate\Console\Scheduling\ScheduleFinishCommand;
9 8
 use LaravelPlus\Extension\Commands;
Please login to merge, or discard this patch.
Indentation   +30 added lines, -30 removed lines patch added patch discarded remove patch
@@ -438,19 +438,19 @@  discard block
 block discarded – undo
438 438
      * @param string $command
439 439
      * @return void
440 440
      */
441
-     protected function registerMakeEventCommand($command)
442
-     {
443
-         $this->app->singleton($command, function ($app) {
444
-             return new Generators\Commands\EventMakeCommand($app);
445
-         });
446
-     }
441
+        protected function registerMakeEventCommand($command)
442
+        {
443
+            $this->app->singleton($command, function ($app) {
444
+                return new Generators\Commands\EventMakeCommand($app);
445
+            });
446
+        }
447 447
  
448
-      /**
449
-     * Register the command.
450
-     *
451
-     * @param string $command
452
-     * @return void
453
-     */
448
+        /**
449
+         * Register the command.
450
+         *
451
+         * @param string $command
452
+         * @return void
453
+         */
454 454
     protected function registerMakeJobCommand($command)
455 455
     {
456 456
         $this->app->singleton($command, function ($app) {
@@ -582,12 +582,12 @@  discard block
 block discarded – undo
582 582
      * @param string $command
583 583
      * @return void
584 584
      */
585
-     protected function registerMakeResourceCommand($command)
586
-     {
587
-         $this->app->singleton($command, function ($app) {
588
-             return new Generators\Commands\ResourceMakeCommand($app);
589
-         });
590
-     }
585
+        protected function registerMakeResourceCommand($command)
586
+        {
587
+            $this->app->singleton($command, function ($app) {
588
+                return new Generators\Commands\ResourceMakeCommand($app);
589
+            });
590
+        }
591 591
  
592 592
     /**
593 593
      * Register the command.
@@ -595,19 +595,19 @@  discard block
 block discarded – undo
595 595
      * @param string $command
596 596
      * @return void
597 597
      */
598
-     protected function registerMakeRuleCommand($command)
599
-     {
600
-         $this->app->singleton($command, function ($app) {
601
-             return new Generators\Commands\RuleMakeCommand($app);
602
-         });
603
-     }
598
+        protected function registerMakeRuleCommand($command)
599
+        {
600
+            $this->app->singleton($command, function ($app) {
601
+                return new Generators\Commands\RuleMakeCommand($app);
602
+            });
603
+        }
604 604
  
605
-      /**
606
-     * Register the command.
607
-     *
608
-     * @param string $command
609
-     * @return void
610
-     */
605
+        /**
606
+         * Register the command.
607
+         *
608
+         * @param string $command
609
+         * @return void
610
+         */
611 611
     protected function registerMakeSeederCommand($command)
612 612
     {
613 613
         $this->app->singleton($command, function ($app) {
Please login to merge, or discard this patch.