Ejemplo n.º 1
0
 /**
  * Open a channel
  *
  * You can send a channel id as parameter, or null to pick a random one, or use the default option from
  * the broker with false.
  *
  * @param int|null|bool $channelId
  *
  * @return $this
  */
 public function openChannel($channelId = false)
 {
     $this->broker->openChannel($channelId);
     return $this;
 }