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