. */ declare(strict_types=1); namespace FireflyIII\Http\Controllers\System; use Illuminate\Contracts\Routing\ResponseFactory; use Illuminate\Http\Response; use Illuminate\Support\Facades\Log; /** * Class CronController */ final class CronController { public function cron(): Response|ResponseFactory { Log::error('The cron endpoint has moved to GET /api/v1/cron/[token]'); return response('The cron endpoint has moved to GET /api/v1/cron/[token]', 500); } }