Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
11 | 1 | public function execute() |
|
12 | { |
||
13 | 1 | $serializer = $this->getFromResponse('serializer'); |
|
14 | |||
15 | 1 | $serialized = $serializer->serialize( |
|
16 | 1 | $this->getFromResponse('response_data'), |
|
17 | 1 | $this->request->attributes->get('_format') |
|
18 | ); |
||
19 | 1 | return $this->createResponse(['response_data'=> $serialized], true); |
|
20 | |||
28 | } |