Conditions | 2 |
Paths | 2 |
Total Lines | 18 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
23 | public function transform(Collection $images): MediaGallery |
||
24 | { |
||
25 | $gallery = []; |
||
26 | $mediaCounter = 0; |
||
27 | |||
28 | foreach ($images as $image) { |
||
29 | ++$mediaCounter; |
||
30 | |||
31 | $gallery[] = new Media( |
||
32 | $image->getPath(), |
||
33 | $mediaCounter, |
||
34 | $image->getType(), |
||
35 | $image->getId() |
||
36 | ); |
||
37 | } |
||
38 | |||
39 | return new MediaGallery($gallery); |
||
40 | } |
||
41 | } |
||
42 |