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()
36
36
public function register ()
37
37
{
38
38
$ this ->mergeConfigFrom (
39
- __DIR__ . '/../config/blueprint.php ' , 'blueprint '
39
+ __DIR__ . '/../config/blueprint.php ' ,
40
+ 'blueprint '
40
41
);
41
42
42
43
File::mixin (new FileMixins ());
43
44
44
- $ this ->app ->bind ('command.blueprint.build ' ,
45
+ $ this ->app ->bind (
46
+ 'command.blueprint.build ' ,
45
47
function ($ app ) {
46
- return new BuildCommand ($ app ['files ' ],app (Builder::class));
48
+ return new BuildCommand ($ app ['files ' ], app (Builder::class));
47
49
}
48
50
);
49
- $ this ->app ->bind ('command.blueprint.erase ' ,
51
+ $ this ->app ->bind (
52
+ 'command.blueprint.erase ' ,
50
53
function ($ app ) {
51
54
return new EraseCommand ($ app ['files ' ]);
52
55
}
53
56
);
54
- $ this ->app ->bind ('command.blueprint.trace ' ,
57
+ $ this ->app ->bind (
58
+ 'command.blueprint.trace ' ,
55
59
function ($ app ) {
56
60
return new TraceCommand ($ app ['files ' ]);
57
61
}
58
62
);
59
- $ this ->app ->bind ('command.blueprint.new ' ,
63
+ $ this ->app ->bind (
64
+ 'command.blueprint.new ' ,
60
65
function ($ app ) {
61
66
return new NewCommand ($ app ['files ' ]);
62
67
}
You can’t perform that action at this time.
0 commit comments