userManager = $userManager; $this->jobList = $jobList; } /** * @inheritDoc */ public function run($argument) { $this->userManager->callForSeenUsers(function (IUser $user): void { $this->jobList->add(GenerateBirthdayCalendarBackgroundJob::class, [ 'userId' => $user->getUID(), 'purgeBeforeGenerating' => true ]); }); } }