1 | <?php |
||
18 | class FilesystemHelper extends Helper |
||
19 | { |
||
20 | const NAME = 'filesystemHelper'; |
||
21 | |||
22 | /** @var Filesystem */ |
||
23 | protected $filesystem; |
||
24 | |||
25 | /** |
||
26 | * @param Filesystem $filesystem |
||
27 | */ |
||
28 | public function __construct(Filesystem $filesystem) |
||
32 | |||
33 | /** |
||
34 | * @param $method |
||
35 | * @param $args |
||
36 | * |
||
37 | * @return mixed |
||
38 | */ |
||
39 | public function __call($method, $args) |
||
43 | |||
44 | /** |
||
45 | * {@inheritdoc} |
||
46 | */ |
||
47 | public function getName() |
||
51 | } |
||
52 |