hash = $hash; $this->email = $email; $this->deletedBy = $deletedBy; $this->rowsDeleted = $rowsDeleted; } /** * {@inheritdoc} */ public static function getWordPressHookName(): string { return 'f12_cf7_doubleoptin_deleted'; } public function getHash(): string { return $this->hash; } public function getEmail(): string { return $this->email; } public function getDeletedBy(): string { return $this->deletedBy; } public function getRowsDeleted(): int { return $this->rowsDeleted; } }