| Total Complexity | 3 |
| Total Lines | 27 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 16 | class NamedExtendedPdoProvider implements ProviderInterface, SetContextInterface |
||
| 17 | { |
||
| 18 | private InjectorInterface $injector; |
||
| 19 | private string $context; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * {@inheritDoc} |
||
| 23 | */ |
||
| 24 | public function setContext($context) |
||
| 25 | { |
||
| 26 | $this->context = $context; |
||
| 27 | } |
||
| 28 | |||
| 29 | public function __construct(InjectorInterface $injector) |
||
| 32 | } |
||
| 33 | |||
| 34 | /** |
||
| 35 | * {@inheritDoc} |
||
| 36 | */ |
||
| 37 | public function get(): ExtendedPdo |
||
| 45 |