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