/**
  * Exclude the current user from receiving the broadcast.
  *
  * @return $this
  */
 public function dontBroadcastToCurrentUser()
 {
     $this->socket = Broadcast::socket();
     return $this;
 }
 /**
  * Exclude the current user from receiving the broadcast.
  *
  * @return $this
  */
 public function exceptCurrentUser()
 {
     $this->socket = Broadcast::socket();
     return $this;
 }