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