Home
last modified time | relevance | path

Searched refs:objectIdentifier (Results 1 – 2 of 2) sorted by relevance

/plugin/combo/ComboStrap/
DBrand.php175 $objectIdentifier = self::CANONICAL . "-" . $brandNameQualified;
178 return $executionContext->getRuntimeObject($objectIdentifier);
181 $executionContext->setRuntimeObject($objectIdentifier, $brandObject);
DExecutionContext.php507 public function &getRuntimeObject(string $objectIdentifier) argument
509 if (isset($this->executionScopedVariables[$objectIdentifier])) {
510 return $this->executionScopedVariables[$objectIdentifier];
512 throw new ExceptionNotFound("No object $objectIdentifier found");
515 public function setRuntimeObject($objectIdentifier, &$object): ExecutionContext argument
517 $this->executionScopedVariables[$objectIdentifier] = &$object;