| 1 | <?php |
||
| 10 | class CachedImage |
||
| 11 | { |
||
| 12 | public $sourceUrl; |
||
| 13 | public $maxHeight; |
||
| 14 | public $cacheKey; |
||
| 15 | protected $_metadata; |
||
| 16 | protected $coverCache; |
||
| 17 | |||
| 18 | public function __construct(CoverCache $coverCache, $cacheKey) |
||
| 23 | |||
| 24 | |||
| 25 | public function getMetadata() |
||
| 33 | |||
| 34 | public function width() |
||
| 38 | |||
| 39 | public function height() |
||
| 43 | |||
| 44 | public function mime() |
||
| 48 | |||
| 49 | public function size() |
||
| 53 | } |
||
| 54 |