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);
 }