| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 29 | public function getImageVariation($imageId, $variationIdentifier) |
||
| 30 | { |
||
| 31 | $imageVariation = $this->innerController->getImageVariation($imageId, $variationIdentifier); |
||
| 32 | list($contentId) = explode('-', $imageId); |
||
| 33 | |||
| 34 | return new CachedValue( |
||
| 35 | $imageVariation, |
||
| 36 | $this->getCacheTagsForContentInfo($this->contentService->loadContentInfo($contentId)) |
||
| 37 | ); |
||
| 38 | } |
||
| 39 | } |
||
| 40 |