Total Complexity | 3 |
Total Lines | 17 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
26 | final class CustomerDisableProcessor implements ProcessorInterface |
||
27 | { |
||
28 | public function __construct(private CustomerRepositoryInterface $customerRepository) |
||
29 | { |
||
30 | } |
||
31 | |||
32 | public function handleHook(array $payload) |
||
38 | } |
||
39 | |||
40 | public function supports(array $payload): bool |
||
43 | } |
||
44 | } |
||
45 |