getCastType() public method

public getCastType ( ) : string
return 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);
 }