Pinq\Queries\Functions\IFunction::getNamespace PHP Метод

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

Null if was defined in the global namespace.
public getNamespace ( ) : string | null
Результат string | null
    public function getNamespace();

Usage Example

Пример #1
0
 public function processFunction(IFunction $function)
 {
     $parameterScopeVariableMap = array_map(function ($variable) {
         return $this->prefix . $variable;
     }, $function->getParameterScopedVariableMap());
     return $function->update($function->getScopeType(), $function->getNamespace(), $parameterScopeVariableMap, $this->walkAll($function->getParameters()->getAll()), $this->walkAll($function->getBodyExpressions()));
 }
All Usage Examples Of Pinq\Queries\Functions\IFunction::getNamespace