Skip to content

Commit 9a75ce5

Browse files
committed
fix(style) : follow proper coding standard style guide
1 parent 0619021 commit 9a75ce5

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/Providers/ConsoleServiceProvider.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class ConsoleServiceProvider extends ServiceProvider
1717
public function boot()
1818
{
1919
// TODO: refactor this to resolving callback while 5.5 branching
20-
$this->app->booted(function () {
20+
$this->app->booted(function () {
2121
if ($this->app->runningInConsole()) {
2222
$this->schedule($this->app->make(Schedule::class));
2323
}
@@ -34,7 +34,6 @@ public function schedule(Schedule $schedule)
3434
$tasks = app('totem.tasks')->findAllActive();
3535

3636
$tasks->each(function ($task) use ($schedule) {
37-
3837
$event = $schedule->command($task->command, $task->compileParameters(true));
3938

4039
$event->cron($task->getCronExpression())

0 commit comments

Comments
 (0)