feat: complete Artisan command standardization (naming, class names, and scheduler sync)

This commit is contained in:
dyzulk
2026-01-07 10:16:33 +07:00
parent 03ff32475a
commit f237c1ac8c
3 changed files with 3 additions and 3 deletions

View File

@@ -7,7 +7,7 @@ use Illuminate\Console\Command;
use Illuminate\Support\Facades\Cache; use Illuminate\Support\Facades\Cache;
use Illuminate\Support\Str; use Illuminate\Support\Str;
class MagicLinkCommand extends Command class TrustLabMagicLink extends Command
{ {
/** /**
* The name and signature of the console command. * The name and signature of the console command.

View File

@@ -4,7 +4,7 @@ namespace App\Console\Commands;
use Illuminate\Console\Command; use Illuminate\Console\Command;
class NotifyCertificateExpirations extends Command class TrustLabNotifyExpiring extends Command
{ {
/** /**
* The name and signature of the console command. * The name and signature of the console command.

View File

@@ -8,4 +8,4 @@ Artisan::command('inspire', function () {
$this->comment(Inspiring::quote()); $this->comment(Inspiring::quote());
})->purpose('Display an inspiring quote'); })->purpose('Display an inspiring quote');
Schedule::command('certificates:notify-expiring')->daily(); Schedule::command('trustlab:notify-expiring')->daily();