Completed
Push — feature/VSVGVQ-7-Entities ( cc0453 )
by Luc
02:51
created
src/Question/Repositories/CategoryDoctrineRepository.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -81,10 +81,10 @@
 block discarded – undo
81 81
 
82 82
         return new Categories(
83 83
             ...array_map(
84
-               function (CategoryEntity $categoryEntity) {
85
-                   return $categoryEntity->toCategory();
86
-               },
87
-               $categoryEntities
84
+                function (CategoryEntity $categoryEntity) {
85
+                    return $categoryEntity->toCategory();
86
+                },
87
+                $categoryEntities
88 88
             )
89 89
         );
90 90
     }
Please login to merge, or discard this patch.
src/Question/Repositories/Entities/QuestionEntity.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -140,7 +140,7 @@
 block discarded – undo
140 140
     {
141 141
         $answers = new Answers(
142 142
             ...array_map(
143
-                function(AnswerEntity $answerEntity) {
143
+                function (AnswerEntity $answerEntity) {
144 144
                     return $answerEntity->toAnswer();
145 145
                 },
146 146
                 $this->getAnswerEntities()->toArray()
Please login to merge, or discard this patch.