1 | <?php |
||
10 | class Command |
||
11 | { |
||
12 | /** |
||
13 | * @var Exiftool |
||
14 | */ |
||
15 | private $config; |
||
16 | |||
17 | /** |
||
18 | * Reader constructor. |
||
19 | * |
||
20 | * @param Exiftool $config |
||
21 | */ |
||
22 | public function __construct(Exiftool $config) |
||
26 | |||
27 | /** |
||
28 | * @param string $filename |
||
29 | * @return string |
||
30 | */ |
||
31 | public function build($filename) |
||
35 | } |