| Total Complexity | 8 |
| Total Lines | 45 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 14 | class ContainerHelper |
||
| 15 | { |
||
| 16 | private AuthorizationCheckerInterface $authorizationChecker; |
||
| 17 | private TokenStorageInterface $tokenStorage; |
||
| 18 | private KernelInterface $kernel; |
||
| 19 | private MessageBusInterface $messengerBus; |
||
| 20 | |||
| 21 | public function getAuthorizationChecker(): AuthorizationCheckerInterface |
||
| 24 | } |
||
| 25 | |||
| 26 | public function setAuthorizationChecker(AuthorizationCheckerInterface $authorizationChecker): void |
||
| 27 | { |
||
| 28 | $this->authorizationChecker = $authorizationChecker; |
||
| 29 | } |
||
| 30 | |||
| 31 | public function getTokenStorage(): TokenStorageInterface |
||
| 32 | { |
||
| 33 | return $this->tokenStorage; |
||
| 34 | } |
||
| 35 | |||
| 36 | public function setTokenStorage(TokenStorageInterface $tokenStorage): void |
||
| 39 | } |
||
| 40 | |||
| 41 | public function getKernel(): KernelInterface |
||
| 42 | { |
||
| 43 | return $this->kernel; |
||
| 44 | } |
||
| 45 | |||
| 46 | public function setKernel(KernelInterface $kernel): void |
||
| 49 | } |
||
| 50 | |||
| 51 | public function getMessengerBus(): MessageBusInterface |
||
| 54 | } |
||
| 55 | |||
| 56 | public function setMessengerBus(MessageBusInterface $messengerBus): void |
||
| 59 | } |
||
| 60 | } |
||
| 61 |