forced; } /** * Set whether notification should be forced * * @param bool $forced */ public function setForced($forced = true) { $this->forced = $forced; } /** * Get notification broadcast flag * * @return bool */ public function getBroadcast() { return $this->broadcast; } /** * Set notification to broadcast * * @param bool $broadcast */ public function setBroadcast($broadcast = true) { $this->broadcast = $broadcast; } }