/** * @return mixed */ public function getName() { return parent::getRight(); }
protected function infixValue(BinaryNode $node, $collector, $value) { parent::visit($node->getLeft(), $collector)->append($value); return parent::visit($node->getRight(), $collector); }