1 | <?php |
||
23 | final class UninitializedContextServiceEnvironment extends StaticEnvironment implements ContextEnvironment |
||
24 | { |
||
25 | /** |
||
26 | * @var array[] |
||
27 | */ |
||
28 | private $contextServices = []; |
||
29 | |||
30 | /** |
||
31 | * @param string $serviceId |
||
32 | * @param string $contextClass |
||
33 | */ |
||
34 | public function registerContextClass($serviceId, $contextClass) |
||
54 | |||
55 | /** |
||
56 | * {@inheritdoc} |
||
57 | */ |
||
58 | public function hasContexts() |
||
62 | |||
63 | /** |
||
64 | * {@inheritdoc} |
||
65 | */ |
||
66 | public function getContextClasses() |
||
70 | |||
71 | /** |
||
72 | * {@inheritdoc} |
||
73 | */ |
||
74 | public function hasContextClass($class) |
||
78 | |||
79 | /** |
||
80 | * @return array[] |
||
81 | */ |
||
82 | public function getContextsServicesIds() |
||
86 | } |
||
87 |