| Conditions | 2 |
| Paths | 2 |
| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 31 | public function runAction(Request $request) |
||
| 32 | { |
||
| 33 | $processed = $this->get('amf_console.console_application.form_handler')->process($request, new ConsoleApplication()); |
||
| 34 | if ($processed['success'] === true) { |
||
| 35 | return new JsonResponse(['output' => $processed['output']]); |
||
| 36 | } |
||
| 37 | |||
| 38 | return new JsonResponse(['errors' => $processed['errors']], 400); |
||
| 39 | } |
||
| 40 | } |
||
| 41 |