Conditions | 2 |
Paths | 2 |
Total Lines | 7 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
22 | 2 | public function getOperationName(Request $request): string |
|
23 | { |
||
24 | 2 | if (!$this->supports($request)) { |
|
25 | 1 | throw new Exception('No action resource was found in the request. The route is wrongly configured'); |
|
26 | } |
||
27 | |||
28 | 1 | return $request->get('_route_params')[LAGAdminBundle::REQUEST_PARAMETER_ACTION]; |
|
29 | } |
||
49 |