All checks were successful
Deploy api / deploy (push) Successful in 23s
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
16 lines
473 B
PHP
16 lines
473 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');
|
||
|
||
// 支払期限切れチェック(15分毎)
|
||
Schedule::command('payment:expire')->everyFifteenMinutes();
|
||
|
||
// SHJ-5 駐輪場空きチェック(毎月20日 11:00)
|
||
Schedule::command('shj:5')->monthlyOn(20, '11:00');
|