boardMapper = $boardMapper; $this->cardMapper = $cardMapper; $this->attachmentService = $attachmentService; $this->attachmentMapper = $attachmentMapper; $this->setInterval(60 * 60 * 24); $this->setTimeSensitivity(IJob::TIME_INSENSITIVE); } /** * @param $argument * @SuppressWarnings(PHPMD.UnusedFormalParameter) */ protected function run($argument) { $boards = $this->boardMapper->findToDelete(); foreach ($boards as $board) { $this->boardMapper->delete($board); } $timeLimit = time() - (60 * 5); // 5 min buffer $cards = $this->cardMapper->findToDelete($timeLimit, 500); foreach ($cards as $card) { $this->cardMapper->delete($card); } $attachments = $this->attachmentMapper->findToDelete(); foreach ($attachments as $attachment) { try { $service = $this->attachmentService->getService($attachment->getType()); $service->delete($attachment); } catch (InvalidAttachmentType $e) { // Just delete the attachment if no service is available } $this->attachmentMapper->delete($attachment); } } }