| Total Complexity | 3 |
| Total Lines | 17 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 15 | trait SaasClientControllerTrait |
||
| 16 | { |
||
| 17 | /** @var SaasClientService */ |
||
| 18 | private $clientService; |
||
| 19 | |||
| 20 | /** @required */ |
||
| 21 | public function setClientService(SaasClientService $clientService) |
||
| 22 | { |
||
| 23 | $this->clientService = $clientService; |
||
| 24 | } |
||
| 25 | |||
| 26 | protected function getCurrentClient(): ?SaasClientInterface |
||
| 32 | } |
||
| 33 | } |
||
| 34 |