| Total Complexity | 2 |
| Total Lines | 14 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 17 | class ClientEntityType extends EntityType |
||
| 18 | { |
||
| 19 | /** @var SaasClientService */ |
||
| 20 | private $clientService; |
||
| 21 | |||
| 22 | public function __construct(ManagerRegistry $managerRegistry, SaasClientService $clientService) |
||
| 23 | { |
||
| 24 | parent::__construct($managerRegistry); |
||
| 25 | $this->clientService = $clientService; |
||
| 26 | } |
||
| 27 | |||
| 28 | public function configureOptions(OptionsResolver $resolver) |
||
| 31 | } |
||
| 32 | } |
||
| 33 |