File tree Expand file tree Collapse file tree 1 file changed +11
-6
lines changed
Expand file tree Collapse file tree 1 file changed +11
-6
lines changed Original file line number Diff line number Diff line change @@ -36,27 +36,32 @@ public function boot()
3636 public function register ()
3737 {
3838 $ this ->mergeConfigFrom (
39- __DIR__ . '/../config/blueprint.php ' , 'blueprint '
39+ __DIR__ . '/../config/blueprint.php ' ,
40+ 'blueprint '
4041 );
4142
4243 File::mixin (new FileMixins ());
4344
44- $ this ->app ->bind ('command.blueprint.build ' ,
45+ $ this ->app ->bind (
46+ 'command.blueprint.build ' ,
4547 function ($ app ) {
46- return new BuildCommand ($ app ['files ' ],app (Builder::class));
48+ return new BuildCommand ($ app ['files ' ], app (Builder::class));
4749 }
4850 );
49- $ this ->app ->bind ('command.blueprint.erase ' ,
51+ $ this ->app ->bind (
52+ 'command.blueprint.erase ' ,
5053 function ($ app ) {
5154 return new EraseCommand ($ app ['files ' ]);
5255 }
5356 );
54- $ this ->app ->bind ('command.blueprint.trace ' ,
57+ $ this ->app ->bind (
58+ 'command.blueprint.trace ' ,
5559 function ($ app ) {
5660 return new TraceCommand ($ app ['files ' ]);
5761 }
5862 );
59- $ this ->app ->bind ('command.blueprint.new ' ,
63+ $ this ->app ->bind (
64+ 'command.blueprint.new ' ,
6065 function ($ app ) {
6166 return new NewCommand ($ app ['files ' ]);
6267 }
You can’t perform that action at this time.
0 commit comments