Skip to content

Commit fa288e4

Browse files
Apply fixes from StyleCI (#316)
1 parent 9d2c20f commit fa288e4

File tree

1 file changed

+11
-6
lines changed

1 file changed

+11
-6
lines changed

src/BlueprintServiceProvider.php

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)