コード例 #1
0
ファイル: TableAliasNode.php プロジェクト: LartTyler/Link
 /**
  * @return mixed
  */
 public function getName()
 {
     return parent::getRight();
 }
コード例 #2
0
ファイル: ToSqlVisitor.php プロジェクト: LartTyler/Link
 protected function infixValue(BinaryNode $node, $collector, $value)
 {
     parent::visit($node->getLeft(), $collector)->append($value);
     return parent::visit($node->getRight(), $collector);
 }