1 | <?php |
||
20 | abstract class FSAbstract implements FSInterface{ |
||
21 | |||
22 | /** |
||
23 | * @var \chillerlan\Filereader\Drivers\FSDriverInterface |
||
24 | */ |
||
25 | protected $filereader; |
||
26 | |||
27 | /** |
||
28 | * @var string |
||
29 | */ |
||
30 | protected $path; |
||
31 | |||
32 | /** |
||
33 | * FSAbstract constructor. |
||
34 | * |
||
35 | * @param \chillerlan\Filereader\Drivers\FSDriverInterface $driver |
||
36 | */ |
||
37 | public function __construct(FSDriverInterface $driver){ |
||
40 | |||
41 | /** |
||
42 | * @param string $name |
||
43 | * |
||
44 | * @return mixed |
||
45 | */ |
||
46 | public function __get(string $name){ |
||
54 | |||
55 | /** |
||
56 | * @return array |
||
57 | */ |
||
58 | public function info():array{ |
||
61 | |||
62 | } |
||
63 |