Formatting fixes and cleanup.
This commit is contained in:
parent
a1e14a3e60
commit
51fb71e469
41 changed files with 394 additions and 392 deletions
|
|
@ -28,7 +28,7 @@ class Kernel extends ConsoleKernel
|
|||
protected function schedule(Schedule $schedule)
|
||||
{
|
||||
// Prune old game settings.
|
||||
$schedule->command('model:prune', [ '--model' => [ \App\Models\Setting::class ] ])
|
||||
$schedule->command('model:prune', ['--model' => [\App\Models\Setting::class]])
|
||||
->description("Prune expired settings")
|
||||
->twiceDaily(2, 8);
|
||||
}
|
||||
|
|
@ -40,7 +40,7 @@ class Kernel extends ConsoleKernel
|
|||
*/
|
||||
protected function commands()
|
||||
{
|
||||
$this->load(__DIR__.'/Commands');
|
||||
$this->load(__DIR__ . '/Commands');
|
||||
|
||||
require base_path('routes/console.php');
|
||||
}
|
||||
|
|
|
|||
Reference in a new issue