Pinq\QueryBuilder::newMethod PHP 메소드

newMethod() 보호된 메소드

protected newMethod ( string $name, array $arguments = [] ) : MethodCallExpression
$name string
$arguments array
리턴 Pinq\Expressions\MethodCallExpression
    protected function newMethod($name, array $arguments = [])
    {
        return O\Expression::methodCall($this->expression, O\Expression::value($name), array_map([O\Expression::getType(), 'argument'], array_map([O\Expression::getType(), 'value'], $arguments)));
    }