hookEventId = $hookEventId; return $this; } /** * Get hookEventId. * * @return int */ public function getHookEventId() { return $this->hookEventId; } /** * Set hookObserverId. * * @param int $hookObserverId * * @return HookCall */ public function setHookObserverId($hookObserverId) { $this->hookObserverId = $hookObserverId; return $this; } /** * Get hookObserverId. * * @return int */ public function getHookObserverId() { return $this->hookObserverId; } /** * Set type. * * @param bool $type * * @return HookCall */ public function setType($type) { $this->type = $type; return $this; } /** * Get type. * * @return bool */ public function getType() { return $this->type; } /** * Set hookOrder. * * @param int $hookOrder * * @return HookCall */ public function setHookOrder($hookOrder) { $this->hookOrder = $hookOrder; return $this; } /** * Get hookOrder. * * @return int */ public function getHookOrder() { return $this->hookOrder; } /** * Set enabled. * * @param bool $enabled * * @return HookCall */ public function setEnabled($enabled) { $this->enabled = $enabled; return $this; } /** * Get enabled. * * @return bool */ public function getEnabled() { return $this->enabled; } /** * Get id. * * @return int */ public function getId() { return $this->id; } }