start($jobList); } /** * Run the job, then remove it from the joblist * * @since 25.0.0 */ final public function start(IJobList $jobList): void { if ($this->id) { $jobList->removeById($this->id); } else { $jobList->remove($this, $this->argument); } parent::start($jobList); } }