Total Complexity | 3 |
Total Lines | 30 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
25 | class CompatibilityService implements CompatibilityServiceInterface { |
||
26 | |||
27 | use ContainerTrait; |
||
28 | |||
29 | /** |
||
30 | * Service name. |
||
31 | * |
||
32 | * @var string |
||
33 | */ |
||
34 | const SERVICE_NAME = "wbw.core.service.compatibility"; |
||
35 | |||
36 | /** |
||
37 | * Constructor. |
||
38 | * |
||
39 | * @param ContainerInterface $container The container. |
||
40 | */ |
||
41 | public function __construct(ContainerInterface $container) { |
||
42 | $this->setContainer($container); |
||
43 | } |
||
44 | |||
45 | /** |
||
46 | * {@inheritdoc} |
||
47 | */ |
||
48 | public function getSession(): ?SessionInterface { |
||
55 | } |
||
56 | } |
||
57 |