| Total Complexity | 3 |
| Total Lines | 15 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 22 | final class CustomerManager implements CustomerManagerInterface |
||
| 23 | { |
||
| 24 | public function __construct(private CustomerRepositoryInterface $customerRepository) |
||
| 25 | { |
||
| 26 | } |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @throws NoCustomerException |
||
| 30 | */ |
||
| 31 | public function getCustomerForReference(string $reference): CustomerInterface |
||
| 37 | } |
||
| 38 | } |
||
| 40 |