Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. ResolveInvalidReferencesPass.php

function ResolveInvalidReferencesPass::processValue

Processes arguments to determine invalid references.

Throws

RuntimeException When an invalid reference is found

1 call to ResolveInvalidReferencesPass::processValue()
ResolveInvalidReferencesPass::process in vendor/symfony/dependency-injection/Compiler/ResolveInvalidReferencesPass.php
Process the ContainerBuilder to resolve invalid references.

File

vendor/symfony/dependency-injection/Compiler/ResolveInvalidReferencesPass.php, line 58

Class

ResolveInvalidReferencesPass
Emulates the invalid behavior if the reference is not found within the container.

Namespace

Symfony\Component\DependencyInjection\Compiler

Code

private function processValue(mixed $value, int $rootLevel = 0, int $level = 0) : mixed {
    if ($value instanceof ServiceClosureArgument) {
        $value->setValues($this->processValue($value->getValues(), 1, 1));
    }
    elseif ($value instanceof ArgumentInterface) {
        $value->setValues($this->processValue($value->getValues(), $rootLevel, 1 + $level));
    }
    elseif ($value instanceof Definition) {
        if ($value->isSynthetic() || $value->isAbstract()) {
            return $value;
        }
        $value->setArguments($this->processValue($value->getArguments(), 0));
        $value->setProperties($this->processValue($value->getProperties(), 1));
        $value->setMethodCalls($this->processValue($value->getMethodCalls(), 2));
    }
    elseif (\is_array($value)) {
        $i = 0;
        foreach ($value as $k => $v) {
            try {
                if (false !== $i && $k !== $i++) {
                    $i = false;
                }
                if ($v !== ($processedValue = $this->processValue($v, $rootLevel, 1 + $level))) {
                    $value[$k] = $processedValue;
                }
            } catch (RuntimeException $e) {
                if ($rootLevel < $level || $rootLevel && !$level) {
                    unset($value[$k]);
                }
                elseif ($rootLevel) {
                    throw $e;
                }
                else {
                    $value[$k] = null;
                }
            }
        }
        // Ensure numerically indexed arguments have sequential numeric keys.
        if (false !== $i) {
            $value = array_values($value);
        }
    }
    elseif ($value instanceof Reference) {
        if ($this->container
            ->hasDefinition($id = (string) $value) ? !$this->container
            ->getDefinition($id)
            ->hasTag('container.excluded') : $this->container
            ->hasAlias($id)) {
            return $value;
        }
        $currentDefinition = $this->container
            ->getDefinition($this->currentId);
        // resolve decorated service behavior depending on decorator service
        if ($currentDefinition->innerServiceId === $id && ContainerInterface::NULL_ON_INVALID_REFERENCE === $currentDefinition->decorationOnInvalid) {
            return null;
        }
        $invalidBehavior = $value->getInvalidBehavior();
        if (ContainerInterface::RUNTIME_EXCEPTION_ON_INVALID_REFERENCE === $invalidBehavior && $value instanceof TypedReference && !$this->container
            ->has($id)) {
            $e = new ServiceNotFoundException($id, $this->currentId);
            // since the error message varies by $id and $this->currentId, so should the id of the dummy errored definition
            $this->container
                ->register($id = \sprintf('.errored.%s.%s', $this->currentId, $id), $value->getType())
                ->addError($e->getMessage());
            return new TypedReference($id, $value->getType(), $value->getInvalidBehavior());
        }
        // resolve invalid behavior
        if (ContainerInterface::NULL_ON_INVALID_REFERENCE === $invalidBehavior) {
            $value = null;
        }
        elseif (ContainerInterface::IGNORE_ON_INVALID_REFERENCE === $invalidBehavior) {
            if (0 < $level || $rootLevel) {
                throw $this->signalingException;
            }
            $value = null;
        }
    }
    return $value;
}
RSS feed
Powered by Drupal