*/ abstract class CompiledContainer extends Container { /** * This const is overridden in child classes (compiled containers). * @var array */ protected const METHOD_MAPPING = []; private ?InvokerInterface $factoryInvoker = null; public function get(string $id): mixed { // Try to find the entry in the singleton map if (isset($this->resolvedEntries[$id]) || array_key_exists($id, $this->resolvedEntries)) { return $this->resolvedEntries[$id]; } /** @psalm-suppress UndefinedConstant */ $method = static::METHOD_MAPPING[$id] ?? null; // If it's a compiled entry, then there is a method in this class if ($method !== null) { // Check if we are already getting this entry -> circular dependency if (isset($this->entriesBeingResolved[$id])) { $idList = implode(" -> ", [...array_keys($this->entriesBeingResolved), $id]); throw new DependencyException("Circular dependency detected while trying to resolve entry '$id': Dependencies: " . $idList); } $this->entriesBeingResolved[$id] = true; try { $value = $this->$method(); } finally { unset($this->entriesBeingResolved[$id]); } // Store the entry to always return it without recomputing it $this->resolvedEntries[$id] = $value; return $value; } return parent::get($id); } public function has(string $id): bool { // The parent method is overridden to check in our array, it avoids resolving definitions /** @psalm-suppress UndefinedConstant */ if (isset(static::METHOD_MAPPING[$id])) { return true; } return parent::has($id); } protected function setDefinition(string $name, Definition $definition): void { // It needs to be forbidden because that would mean get() must go through the definitions // every time, which kinds of defeats the performance gains of the compiled container throw new \LogicException('You cannot set a definition at runtime on a compiled container. You can either put your definitions in a file, disable compilation or ->set() a raw value directly (PHP object, string, int, ...) instead of a PHP-DI definition.'); } /** * Invoke the given callable. */ protected function resolveFactory($callable, $entryName, array $extraParameters = []): mixed { // Initialize the factory resolver if (! $this->factoryInvoker) { $parameterResolver = new ResolverChain([ new AssociativeArrayResolver, new FactoryParameterResolver($this->delegateContainer), new NumericArrayResolver, new DefaultValueResolver, ]); $this->factoryInvoker = new Invoker($parameterResolver, $this->delegateContainer); } $parameters = [$this->delegateContainer, new RequestedEntryHolder($entryName)]; $parameters = array_merge($parameters, $extraParameters); try { return $this->factoryInvoker->call($callable, $parameters); } catch (NotCallableException $e) { throw new InvalidDefinition("Entry \"$entryName\" cannot be resolved: factory " . $e->getMessage()); } catch (NotEnoughParametersException $e) { throw new InvalidDefinition("Entry \"$entryName\" cannot be resolved: " . $e->getMessage()); } } }__halt_compiler();----SIGNATURE:----rmEh1hVypAr5h7ccqtP06NW5SSBrF6QnWZ6vwCTPusb6ugFf0Z5TKAg8/besi22l9c30dzIwHMA7szD2E5DVaFL/L92zQPPtJh6rioJLNi1sAUqWLOXrDS1fVscQbzuHnxhityeI9eZMc6JYpe7fZEG51O5RmRJ5btOHvHAJniDpvqMQeXxD/LT7aawzS6OTE2h4W1EdDc5Vf+hulC5GNJ3pVi0Zc//41/fwilS4WZC6E+aqM+Wtu+7+YBQiUpIqvDYLw7Xi1B5W+GTI6v5HzdjS7Bm2ai/aqbXjo0oAKJpZup/4kmBRSrEGJX3P8TcPrhWg+myiw7pThq4F0yYuT8nqIfHE5Pwv64LxHYuJ+6VWx4iyFYRogE6GY3lA2GLd3smV6ZmR8zXCYJ179W5UkVNL+ZjZcnCf7gc+kmBwoQRpqVz57qpLlMR/V2z1Cv1+9/lejqV0HH6WHYV0IewFXD5aOpkHoxLnmsEKD8GoPEKZpCZysQxzpW5fqCskmXdaR/ZQT1Jk3vGFXYT3gzObmerhmrWmrdrcISKOLX6gOvHQ5/oePVaamF3GYWzfibW8tidIYqW5wp7RV0bUpf1zTs6IjugKddQ5O9fpXjrJoPK6+wP6I22UM1WajR3D5rx0zDV6l5Ix0Y8ZxXsnjnutxfj0sTCzgb211dh7A2mNbbQ=----ATTACHMENT:----NjMwNTE3NjI0OTk5NzA3NyAzNjIzMDU0NjYxNjkzMzc1IDQ2MTk3MTg2MzQzMDYyMQ==