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

Skip to content

Commit 5597c59

Browse files
CS fix
1 parent 938244f commit 5597c59

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/AsyncServiceProvider.php

Lines changed: 4 additions & 4 deletions
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)