1 | <?php |
||
12 | class GraphicResolverFilePath implements GraphicResolverInterface |
||
13 | { |
||
14 | /** |
||
15 | * @var Bmp |
||
16 | */ |
||
17 | private $bmp; |
||
18 | |||
19 | /** |
||
20 | * @param Bmp $bmp |
||
21 | */ |
||
22 | 1 | public function __construct(Bmp $bmp) |
|
26 | |||
27 | /** |
||
28 | * @param string $filePath |
||
29 | * @return Resource |
||
30 | */ |
||
31 | 1 | public function __invoke($filePath) |
|
39 | |||
40 | /** |
||
41 | * @return GraphicResolverInterface |
||
42 | */ |
||
43 | public static function factory() |
||
49 | } |
||
50 |