예제 #1
0
 /**
  * Emits a message through the engine
  *
  * @return $this
  */
 public function emit($event, array $args)
 {
     $this->logger->debug('Sending a new message', ['event' => $event, 'args' => $args]);
     $this->engine->emit($event, $args);
     return $this;
 }
예제 #2
0
파일: Client.php 프로젝트: jgao18/PokerRoom
 /**
  * Emits a message through the engine
  *
  * @return $this
  */
 public function emit($event, array $args)
 {
     $this->engine->emit($event, $args);
     return $this;
 }