event = $event; $this->objectType = $objectType; $this->objectId = $objectId; $this->tags = $tags; } /** * @return string * @since 9.0.0 */ public function getEvent(): string { return $this->event; } /** * @return string * @since 9.0.0 */ public function getObjectType(): string { return $this->objectType; } /** * @return string * @since 9.0.0 */ public function getObjectId(): string { return $this->objectId; } /** * @return int[] * @since 9.0.0 */ public function getTags(): array { return $this->tags; } }