@@ -51,7 +51,7 @@ discard block |
||
51 | 51 | /** @var ImageRenditionInterface[] $renditions */ |
52 | 52 | if (null !== ($renditions = $data->getRenditions()) && count($renditions) > 0) { |
53 | 53 | $existingThumbnailRendition = $data->getRenditions() |
54 | - ->filter(static function ($rendition) { |
|
54 | + ->filter(static function($rendition) { |
|
55 | 55 | /* @var ImageRenditionInterface $rendition */ |
56 | 56 | return self::VIEW_IMAGE === $rendition->getName(); |
57 | 57 | }); |
@@ -61,7 +61,7 @@ discard block |
||
61 | 61 | |
62 | 62 | /** @var ImageRenditionInterface[] $searchedRenditions */ |
63 | 63 | $searchedRenditions = $data->getRenditions() |
64 | - ->filter(function ($rendition) { |
|
64 | + ->filter(function($rendition) { |
|
65 | 65 | /* @var ImageRenditionInterface $rendition */ |
66 | 66 | return $rendition->getName() === $this->thumbnailRenditionName; |
67 | 67 | }); |