| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 35 | public function webhookAction(Request $request) |
||
| 36 | { |
||
| 37 | $command = new CreatePaymentCommand(); |
||
| 38 | $command->payload = $request->request->all(); |
||
| 39 | $command->txId = $command->payload['txn_id']; |
||
| 40 | $command->method = 'paypal'; |
||
| 41 | $this->commandBus->handle($command); |
||
| 42 | return new Response(); |
||
| 43 | } |
||
| 44 | } |
||
| 45 |