8 lines
145 B
PHP
8 lines
145 B
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Schedule;
|
|
|
|
Schedule::command('bastion:refresh-tokens')
|
|
->everyTenMinutes()
|
|
->withoutOverlapping();
|