| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 51 | 3 | public function toArray(): array |
|
| 52 | { |
||
| 53 | 3 | $array = parent::toArray(); |
|
| 54 | $array += [ |
||
| 55 | 'payload' => [ |
||
| 56 | 3 | 'template_type' => AbstractTemplate::TYPE_GENERIC, |
|
| 57 | 3 | 'elements' => $this->elements, |
|
| 58 | 3 | 'image_aspect_ratio' => $this->imageRatio, |
|
| 59 | ], |
||
| 60 | ]; |
||
| 61 | |||
| 62 | 3 | return $this->arrayFilter($array); |
|
| 63 | } |
||
| 64 | } |
||
| 65 |