| Total Complexity | 4 |
| Total Lines | 39 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 18 | class ClientManager |
||
| 19 | { |
||
| 20 | /** @var EventDispatcherInterface */ |
||
| 21 | protected $dispatcher; |
||
| 22 | |||
| 23 | /** @var EntityManagerInterface */ |
||
| 24 | private $em; |
||
| 25 | |||
| 26 | 2 | public function __construct( |
|
| 27 | EntityManagerInterface $em, |
||
| 28 | EventDispatcherInterface $dispatcher |
||
| 29 | ) { |
||
| 30 | 2 | $this->em = $em; |
|
| 31 | 2 | $this->dispatcher = $dispatcher; |
|
| 32 | 2 | } |
|
| 33 | |||
| 34 | 2 | public function getClientById($id) |
|
| 57 | } |
||
| 58 | } |
||
| 59 |