1 | <?php |
||
9 | final class ImageViewFactory implements ImageViewFactoryInterface |
||
10 | { |
||
11 | /** |
||
12 | * @var CacheManager |
||
13 | */ |
||
14 | private $imagineCacheManager; |
||
15 | |||
16 | /** |
||
17 | * @param CacheManager $imagineCacheManager |
||
18 | */ |
||
19 | public function __construct(CacheManager $imagineCacheManager) |
||
23 | |||
24 | /** |
||
25 | * @param ImageInterface $image |
||
26 | * |
||
27 | * @return ImageView |
||
28 | */ |
||
29 | public function create(ImageInterface $image) |
||
37 | } |
||
38 |