Pinq\Queries\Functions\Parameters\ParameterBase::getAll PHP Method

getAll() final public method

Gets an array of all parameters.
final public getAll ( ) : ParameterExpression[]
return Pinq\Expressions\ParameterExpression[]
    public final function getAll()
    {
        return $this->expressions;
    }

Usage Example

Beispiel #1
0
 public final function walk(O\ExpressionWalker $walker)
 {
     return $this->update($this->evaluationContextFactory->getScopeType(), $this->evaluationContextFactory->getNamespace(), $this->evaluationContextFactory->getParameterScopedVariableMap(), $walker->walkAll($this->parameters->getAll()), $this->isInternal() ? null : $walker->walkAll($this->bodyExpressions));
 }