/** * @see \r8\iface\Log\Node::dispatch */ public function dispatch(\r8\Log\Message $message) { if ($this->matcher->matches($message)) { $this->node->dispatch($message); } return $this; }
/** * @see \r8\iface\Log\Matcher::matches */ public function matches(\r8\Log\Message $message) { return !$this->inner->matches($message); }