13 lines
383 B
PHP
13 lines
383 B
PHP
<?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');
|
|
|
|
// Anonimizzazione GDPR degli utenti oltre la retention (richiede lo scheduler attivo).
|
|
Schedule::command('users:purge')->daily();
|