ContainerInterface.php
SymfonyContainer.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
declare(strict_types=1); | |
namespaceShared\Domain\DependencyInjection; | |
interfaceContainerInterface | |
{ | |
/** | |
* @return object|null | |
* | |
* @deprecated Transition method from Symfony container | |
* @see self::hasService() | |
* @see self::getService() | |
* @see self::getByType() | |
* @see self::getByNameAndType() | |
* @see self::getParameters() | |
* @see self::hasParameter() | |
* @see self::getParameter() | |
*/ | |
publicfunctionget(string$id); | |
publicfunctionhasService(string$serviceName): bool; | |
publicfunctiongetService(string$serviceName): object; | |
/** | |
* @phpstan-template T of object | |
* | |
* @param class-string<T> $className | |
* | |
* @return T | |
*/ | |
publicfunctiongetByType(string$className); | |
/** | |
* @phpstan-template T of object | |
* | |
* @param class-string<T> $className | |
* | |
* @return T | |
*/ | |
publicfunctiongetByNameAndType(string$serviceName, string$className); | |
/** | |
* @return array<array-key, mixed> | |
*/ | |
publicfunctiongetParameters(): array; | |
publicfunctionhasParameter(string$parameterName): bool; | |
/** | |
* @return mixed | |
*/ | |
publicfunctiongetParameter(string$name); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
declare(strict_types=1); | |
namespaceShared\Infrastructure\DependencyInjection; | |
usefunctionPsl\invariant; | |
usePsl\Type; | |
useShared\Domain\DependencyInjection; | |
useSymfony; | |
finalclassSymfonyContainerimplementsDependencyInjection\ContainerInterface | |
{ | |
privateSymfony\Component\DependencyInjection\Container$container; | |
publicfunction__construct(Symfony\Component\DependencyInjection\Container$container) | |
{ | |
$this->container = $container; | |
} | |
/** | |
* @deprecated | |
*/ | |
publicfunctionget(string$id) | |
{ | |
return$this->container->get($id); | |
} | |
publicfunctionhasService(string$serviceName): bool | |
{ | |
return$this->container->has($serviceName); | |
} | |
publicfunctiongetService(string$serviceName): object | |
{ | |
try { | |
$service = $this->container->get($serviceName); | |
invariant(null !== $service, 'Service %s not found in the container.', $serviceName); | |
return$service; | |
} catch (Symfony\Component\DependencyInjection\Exception\ServiceNotFoundException$e) { | |
thrownewDependencyInjection\Exception\ServiceNotFoundException($serviceName, $e); | |
} catch (\Exception$e) { | |
thrownew \RuntimeException('Unexpected exception', 0, $e); | |
} | |
} | |
publicfunctiongetByType(string$className) | |
{ | |
returnType\object($className)->assert($this->getService($className)); | |
} | |
publicfunctiongetByNameAndType(string$serviceName, string$className) | |
{ | |
returnType\object($className)->assert($this->getService($serviceName)); | |
} | |
publicfunctiongetParameters(): array | |
{ | |
return$this->container->getParameterBag()->all(); | |
} | |
publicfunctionhasParameter(string$parameterName): bool | |
{ | |
return$this->container->hasParameter($parameterName); | |
} | |
publicfunctiongetParameter(string$name) | |
{ | |
if (!$this->hasParameter($name)) { | |
thrownewDependencyInjection\Exception\ParameterNotFoundException($name); | |
} | |
return$this->container->getParameter($name); | |
} | |
} |