Quantcast
Channel: Recent Gists from devnix
Viewing all articles
Browse latest Browse all 15

Hexagonal container inspired by PHPStan source code

$
0
0
ContainerInterface.php
<?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);
}
SymfonyContainer.php
<?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);
}
}

Viewing all articles
Browse latest Browse all 15

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>