Completed
Pull Request — master (#10)
by
unknown
08:30
created
src/Providers/HiveServiceProvider.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -42,63 +42,63 @@
 block discarded – undo
42 42
 
43 43
     protected function registerAssembleCommand()
44 44
     {
45
-        $this->app->singleton('command.assemble', function () {
45
+        $this->app->singleton('command.assemble', function() {
46 46
             return new AssembleCommand();
47 47
         });
48 48
     }
49 49
 
50 50
     protected function registerMakeFactoryCommand()
51 51
     {
52
-        $this->app->singleton('command.make.factory', function ($app) {
52
+        $this->app->singleton('command.make.factory', function($app) {
53 53
             return new MakeFactoryCommand($app['files']);
54 54
         });
55 55
     }
56 56
 
57 57
     protected function registerMakeInstanceCommand()
58 58
     {
59
-        $this->app->singleton('command.make.instance', function ($app) {
59
+        $this->app->singleton('command.make.instance', function($app) {
60 60
             return new MakeInstanceCommand($app['files']);
61 61
         });
62 62
     }
63 63
 
64 64
     protected function registerMakeRepoCommand()
65 65
     {
66
-        $this->app->singleton('command.make.repo', function ($app) {
66
+        $this->app->singleton('command.make.repo', function($app) {
67 67
             return new MakeRepoCommand($app['files']);
68 68
         });
69 69
     }
70 70
 
71 71
     protected function registerMakeValidatorCommand()
72 72
     {
73
-        $this->app->singleton('command.make.validator', function ($app) {
73
+        $this->app->singleton('command.make.validator', function($app) {
74 74
             return new MakeValidatorCommand($app['files']);
75 75
         });
76 76
     }
77 77
 
78 78
     protected function registerMakeControllerCommand()
79 79
     {
80
-        $this->app->singleton('command.make.controller', function ($app) {
80
+        $this->app->singleton('command.make.controller', function($app) {
81 81
             return new MakeControllerCommand($app['files']);
82 82
         });
83 83
     }
84 84
 
85 85
     protected function registerMakeCommandCommand()
86 86
     {
87
-        $this->app->singleton('command.make.command', function ($app) {
87
+        $this->app->singleton('command.make.command', function($app) {
88 88
             return new MakeCommandCommand($app['files']);
89 89
         });
90 90
     }
91 91
 
92 92
     protected function registerMakeHandlerCommand()
93 93
     {
94
-        $this->app->singleton('command.make.handler', function ($app) {
94
+        $this->app->singleton('command.make.handler', function($app) {
95 95
             return new MakeHandlerCommand($app['files']);
96 96
         });
97 97
     }
98 98
 
99 99
     protected function registerMakeMutatorCommand()
100 100
     {
101
-        $this->app->singleton('command.make.mutator', function ($app) {
101
+        $this->app->singleton('command.make.mutator', function($app) {
102 102
             return new MakeMutatorCommand($app['files']);
103 103
         });
104 104
     }
Please login to merge, or discard this patch.