| 1 | <?php |
||
| 22 | final class UninitialisedContextServiceEnvironment extends StaticEnvironment implements ContextServiceEnvironment |
||
| 23 | { |
||
| 24 | /** @var string[] */ |
||
| 25 | private $contextServices = []; |
||
| 26 | |||
| 27 | public function registerContextService(string $serviceId, string $serviceClass): void |
||
| 31 | |||
| 32 | public function getContextServices(): array |
||
| 36 | |||
| 37 | public function hasContexts(): bool |
||
| 41 | |||
| 42 | public function getContextClasses(): array |
||
| 46 | |||
| 47 | public function hasContextClass($class): bool |
||
| 51 | } |
||
| 52 |