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