Pinq\Analysis\IType::getMethod PHP Method

getMethod() public method

Gets the matched method of the supplied expression.
public getMethod ( MethodCallExpression $expression ) : Pinq\Analysis\IMethod
$expression Pinq\Expressions\MethodCallExpression
return 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);
 }