job ?? []; } /** * Service entry points. */ public function service(): TaskSchedulerService { return new TaskSchedulerService($this); } public function job(): \Illuminate\Database\Eloquent\Relations\HasOne { return $this->hasOne(ScheduledJob::class, 'scheduler_id', 'id'); } }