| Total Complexity | 3 |
| Total Lines | 26 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 15 | final class NamedExtendedPdoProvider implements ProviderInterface, SetContextInterface |
||
| 16 | { |
||
| 17 | private string $context; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * {@inheritDoc} |
||
| 21 | */ |
||
| 22 | #[Override] |
||
| 23 | public function setContext($context) |
||
| 24 | { |
||
| 25 | $this->context = $context; |
||
| 26 | } |
||
| 27 | |||
| 28 | public function __construct(private readonly InjectorInterface $injector) |
||
| 30 | } |
||
| 31 | |||
| 32 | /** |
||
| 33 | * {@inheritDoc} |
||
| 34 | */ |
||
| 35 | #[Override] |
||
| 43 |