summaryrefslogtreecommitdiff
path: root/routes/console.php
blob: 4064a00164972b75ad60f72cb3669ee0cd490294 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php

use Illuminate\Foundation\Inspiring;
use Illuminate\Support\Facades\Artisan;
use Illuminate\Support\Facades\Schedule;

Artisan::command('inspire', function () {
    $this->comment(Inspiring::quote());
})->purpose('Display an inspiring quote');

// Schedule file cleanup tasks
Schedule::command('files:cleanup-expired')->daily();
Schedule::command('files:cleanup-chunks')->hourly();