Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit da6ae88

Browse files
committed
Merge pull request barryvdh#15 from GrahamCampbell/fix
CS fix
2 parents 938244f + 5597c59 commit da6ae88

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/AsyncServiceProvider.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ public function register()
4646
protected function registerAsyncCommand($app)
4747
{
4848
$app['command.queue.async'] = $app->share(function ($app) {
49-
return new AsyncCommand();
50-
});
49+
return new AsyncCommand();
50+
});
5151

5252
$this->commands('command.queue.async');
5353
}
@@ -62,8 +62,8 @@ protected function registerAsyncCommand($app)
6262
protected function registerAsyncConnector($manager)
6363
{
6464
$manager->addConnector('async', function () {
65-
return new AsyncConnector();
66-
});
65+
return new AsyncConnector();
66+
});
6767
}
6868

6969
/**

0 commit comments

Comments
 (0)