setInterval(60 * 60 * 24); $this->setTimeSensitivity(self::TIME_INSENSITIVE); $this->data = $data; $this->config = $config; } #[\Override] protected function run($argument): void { // Remove activities that are older then one year $expireDays = $this->config->getSystemValue('activity_expire_days', 365); $this->data->expire($expireDays); } }