1 | <?php |
||
22 | final class UninitialisedContextServiceEnvironment extends StaticEnvironment implements ContextServiceEnvironment |
||
23 | { |
||
24 | /** |
||
25 | * @var string[] |
||
26 | */ |
||
27 | private $contextServices = []; |
||
28 | |||
29 | /** |
||
30 | * @param string $serviceId |
||
31 | * @param string $serviceClass |
||
32 | */ |
||
33 | public function registerContextService($serviceId, $serviceClass) |
||
37 | |||
38 | /** |
||
39 | * @return array[] |
||
40 | */ |
||
41 | public function getContextServices() |
||
45 | |||
46 | /** |
||
47 | * {@inheritdoc} |
||
48 | */ |
||
49 | public function hasContexts() |
||
53 | |||
54 | /** |
||
55 | * {@inheritdoc} |
||
56 | */ |
||
57 | public function getContextClasses() |
||
61 | |||
62 | /** |
||
63 | * {@inheritdoc} |
||
64 | */ |
||
65 | public function hasContextClass($class) |
||
69 | } |
||
70 |