Conditions | 3 |
Paths | 3 |
Total Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
28 | public function getThumbnail(ContentType $contentType, array $fields): ?Thumbnail |
||
29 | { |
||
30 | foreach ($this->strategies as $strategy) { |
||
31 | $thumbnail = $strategy->getThumbnail($contentType, $fields); |
||
32 | |||
33 | if ($thumbnail !== null) { |
||
34 | return $thumbnail; |
||
35 | } |
||
36 | } |
||
37 | |||
38 | return null; |
||
39 | } |
||
40 | } |
||
41 |