| Total Complexity | 2 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 22 | final class RequestProcessor implements RequestProcessorInterface |
||
| 23 | { |
||
| 24 | public function __construct( |
||
| 25 | private WebhookConfig $config, |
||
| 26 | private ProviderInterface $provider, |
||
| 27 | private HandlerManagerInterface $handlerManager, |
||
| 28 | ) { |
||
| 29 | } |
||
| 30 | |||
| 31 | public function processRequest(Request $request): void |
||
| 40 | } |
||
| 41 | } |
||
| 42 |