コード例 #1
0
ファイル: GetAttribute.php プロジェクト: mcuelenaere/plitz
 /**
  * @return string
  */
 public function toString()
 {
     return $this->expression->toString() . "." . $this->attributeName;
 }
コード例 #2
0
ファイル: Unary.php プロジェクト: mcuelenaere/plitz
 /**
  * @return string
  */
 public function toString()
 {
     return $this->operation . " " . $this->expression->toString();
 }
コード例 #3
0
ファイル: Binary.php プロジェクト: mcuelenaere/plitz
 public function toString()
 {
     return $this->left->toString() . " " . $this->operation . " " . $this->right->toString();
 }