rcrowe\Hippy\Transport\TransportInterface::setRoom PHP Метод

setRoom() публичный Метод

Set the room that the message will be sent to.
public setRoom ( string $room ) : void
$room string Room name or id.
Результат void
    public function setRoom($room);

Usage Example

Пример #1
0
 /**
  * Set the room that the message will be sent to.
  *
  * @param string $room Room name or id.
  * @return void
  */
 public function setRoom($room)
 {
     $this->transport->setRoom($room);
 }