1 | <?php |
||
8 | class FileProcessor |
||
9 | { |
||
10 | /** |
||
11 | * @var IOInterface |
||
12 | */ |
||
13 | private $io; |
||
14 | /** |
||
15 | * @var FileHandler |
||
16 | */ |
||
17 | private $fileHandler; |
||
18 | /** |
||
19 | * @var Filesystem |
||
20 | */ |
||
21 | private $fs; |
||
22 | |||
23 | /** |
||
24 | * FileProcessor constructor. |
||
25 | * @param Filesystem $fs |
||
26 | * @param IOInterface $io |
||
27 | * @param FileHandler $fileHandler |
||
28 | */ |
||
29 | 2 | public function __construct(Filesystem $fs, IOInterface $io, FileHandler $fileHandler) |
|
35 | |||
36 | /** |
||
37 | * @param $configs |
||
38 | * @return bool |
||
39 | */ |
||
40 | 2 | public function process($configs) |
|
67 | |||
68 | } |
||
69 |