コード例 #1
0
ファイル: Gate.php プロジェクト: Nycto/Round-Eights
 /**
  * @see \r8\iface\Log\Node::dispatch
  */
 public function dispatch(\r8\Log\Message $message)
 {
     if ($this->matcher->matches($message)) {
         $this->node->dispatch($message);
     }
     return $this;
 }
コード例 #2
0
ファイル: Log.php プロジェクト: Nycto/Round-Eights
 /**
  * @see \r8\iface\Log\Node::dispatch
  */
 public function dispatch(\r8\Log\Message $message)
 {
     $this->node->dispatch($message);
     return $this;
 }