PHP 클래스 Pinq\Expressions\BinaryOperationExpression

저자: Elliot Levin ([email protected])
상속: extends Expression
파일 보기 프로젝트 열기: timetoogo/pinq 1 사용 예제들

공개 메소드들

메소드 설명
__clone ( )
__construct ( Expression $leftOperand, $operator, Expression $rightOperand )
getLeftOperand ( ) : Expression
getOperator ( ) : string
getRightOperand ( ) : Expression
serialize ( )
traverse ( ExpressionWalker $walker )
unserialize ( $serialized )
update ( Expression $leftOperand, integer $operator, Expression $rightOperand ) : self

보호된 메소드들

메소드 설명
compileCode ( &$code )

메소드 상세

__clone() 공개 메소드

public __clone ( )

__construct() 공개 메소드

public __construct ( Expression $leftOperand, $operator, Expression $rightOperand )
$leftOperand Expression
$rightOperand Expression

compileCode() 보호된 메소드

protected compileCode ( &$code )

getLeftOperand() 공개 메소드

public getLeftOperand ( ) : Expression
리턴 Expression

getOperator() 공개 메소드

public getOperator ( ) : string
리턴 string The binary operator

getRightOperand() 공개 메소드

public getRightOperand ( ) : Expression
리턴 Expression

serialize() 공개 메소드

public serialize ( )

traverse() 공개 메소드

public traverse ( ExpressionWalker $walker )
$walker ExpressionWalker

unserialize() 공개 메소드

public unserialize ( $serialized )

update() 공개 메소드

public update ( Expression $leftOperand, integer $operator, Expression $rightOperand ) : self
$leftOperand Expression
$operator integer
$rightOperand Expression
리턴 self