cleanupType = $cleanupType; $this->rowsDeleted = $rowsDeleted; $this->threshold = $threshold; } /** * {@inheritdoc} */ public static function getWordPressHookName(): string { return 'f12_cf7_doubleoptin_expired'; } public function getCleanupType(): string { return $this->cleanupType; } public function getRowsDeleted(): int { return $this->rowsDeleted; } public function getThreshold(): \DateTimeImmutable { return $this->threshold; } }