コード例 #1
0
ファイル: Client.php プロジェクト: timenz/elephant.io
 /**
  * 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;
 }