delete(); } public function asController(Participant $participant): void { $this->startJob($participant->id); } /** * @param mixed $parameters */ public function jobState(WithJobState $jobState, ...$parameters): WithJobState { return $jobState ->after('Teilnehmer gelöscht.') ->failed('Löschen von Teilnehmer fehlgeschlagen.') ->shouldReload(JobChannels::make()->add('participant')); } }