Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
24 | public function webhookAction(Request $request) |
||
25 | { |
||
26 | $body = $request->getContent(); |
||
27 | $bodyJson = json_decode($body); |
||
28 | |||
29 | $onfidoWebHookService = $this->getPartFireMangoPayService(); |
||
30 | $onfidoWebHookService->processRequest($bodyJson); |
||
31 | |||
32 | return new Response('', 201); |
||
33 | } |
||
34 | |||
39 | } |