getCastType() 공개 메소드

public getCastType ( ) : string
리턴 string The cast operator
예제 #1
0
파일: Type.php 프로젝트: timetoogo/pinq
 public function getCast(O\CastExpression $expression)
 {
     if (isset($this->castOperations[$expression->getCastType()])) {
         return $this->castOperations[$expression->getCastType()];
     }
     return $this->parentType->getCast($expression);
 }