Skip to content

Commit

Permalink
Fixed typo in console kernel
Browse files Browse the repository at this point in the history
  • Loading branch information
korridor committed Oct 11, 2024
1 parent c291170 commit 2b1da88
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/Console/Kernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ protected function schedule(Schedule $schedule): void
->when(fn (): bool => config('scheduling.tasks.time_entry_send_still_running_mails'))
->everyTenMinutes();

$schedule->command('self-hosting:check-for-update')
$schedule->command('self-host:check-for-update')
->when(fn (): bool => config('scheduling.tasks.self_hosting_check_for_update'))
->twiceDaily();

$schedule->command('self-hosting:telemetry')
$schedule->command('self-host:telemetry')
->when(fn (): bool => config('scheduling.tasks.self_hosting_telemetry'))
->twiceDaily();
}
Expand Down

0 comments on commit 2b1da88

Please sign in to comment.