@@ -42,7 +42,7 @@ |
||
42 | 42 | 'title' => $object->getTitle(), |
43 | 43 | 'description' => $object->getDescription(), |
44 | 44 | 'body' => $object->getBody(), |
45 | - 'tagList' => array_map(function (Tag $tag) { |
|
45 | + 'tagList' => array_map(function(Tag $tag) { |
|
46 | 46 | return $this->normalizer->normalize($tag); |
47 | 47 | }, $object->getTags()->toArray()), |
48 | 48 | 'createdAt' => $this->normalizer->normalize($object->getCreatedAt()), |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | namespace DoctrineMigrations; |
6 | 6 |