@@ -50,7 +50,7 @@ |
||
| 50 | 50 | ); |
| 51 | 51 | |
| 52 | 52 | $answers = array_map( |
| 53 | - function (array $answer) use ($format) { |
|
| 53 | + function(array $answer) use ($format) { |
|
| 54 | 54 | return $this->answerDenormalizer->denormalize( |
| 55 | 55 | $answer, |
| 56 | 56 | Answer::class, |
@@ -41,7 +41,7 @@ |
||
| 41 | 41 | ); |
| 42 | 42 | |
| 43 | 43 | $answers = array_map( |
| 44 | - function (Answer $answer) use ($format) { |
|
| 44 | + function(Answer $answer) use ($format) { |
|
| 45 | 45 | return $this->answerNormalizer->normalize( |
| 46 | 46 | $answer, |
| 47 | 47 | $format |
@@ -28,7 +28,7 @@ |
||
| 28 | 28 | { |
| 29 | 29 | /** @var Categories $categories */ |
| 30 | 30 | return array_map( |
| 31 | - function (Category $category) use ($format, $context) { |
|
| 31 | + function(Category $category) use ($format, $context) { |
|
| 32 | 32 | return $this->categoryNormalizer->normalize($category, $format, $context); |
| 33 | 33 | }, |
| 34 | 34 | $categories->toArray() |