Pinq\Queries\Functions\FunctionEvaluationContextFactory::getCallableId PHP Метод

getCallableId() публичный Метод

public getCallableId ( ) : string
Результат string
    public function getCallableId()
    {
        return $this->callableId;
    }

Usage Example

Пример #1
0
 public function update($scopeType, $namespace, array $parameterScopedVariableMap, array $parameterExpressions, array $bodyExpressions = null)
 {
     if ($this->evaluationContextFactory->getScopeType() === $scopeType && $this->evaluationContextFactory->getNamespace() === $namespace && $this->evaluationContextFactory->getParameterScopedVariableMap() === $parameterScopedVariableMap && $this->parameters->getAll() === $parameterExpressions && $this->bodyExpressions === $bodyExpressions) {
         return $this;
     }
     return new static($this->evaluationContextFactory->getCallableId(), $scopeType, $namespace, $parameterScopedVariableMap, $parameterExpressions, $bodyExpressions);
 }