Pinq\Analysis\IType::getMethod PHP 메소드

getMethod() 공개 메소드

Gets the matched method of the supplied expression.
public getMethod ( MethodCallExpression $expression ) : Pinq\Analysis\IMethod
$expression Pinq\Expressions\MethodCallExpression
리턴 Pinq\Analysis\IMethod
    public function getMethod(O\MethodCallExpression $expression);

Usage Example

예제 #1
0
파일: Type.php 프로젝트: timetoogo/pinq
 public function getMethod(O\MethodCallExpression $expression)
 {
     return $this->parentType->getMethod($expression);
 }