1 | <?php |
||
18 | class PasteFilterLoader implements LoaderInterface |
||
19 | { |
||
20 | /** |
||
21 | * @var ImagineInterface |
||
22 | */ |
||
23 | protected $imagine; |
||
24 | |||
25 | /** |
||
26 | * @var string |
||
27 | */ |
||
28 | protected $projectDir; |
||
29 | |||
30 | public function __construct(ImagineInterface $imagine, $projectDir) |
||
35 | |||
36 | /** |
||
37 | * @see \Liip\ImagineBundle\Imagine\Filter\Loader\LoaderInterface::load() |
||
38 | * |
||
39 | * @return ImageInterface|static |
||
40 | */ |
||
41 | public function load(ImageInterface $image, array $options = []) |
||
50 | } |
||
51 |