1 | <?php |
||
19 | class SingleFileWriter implements WriterInterface |
||
20 | { |
||
21 | /** |
||
22 | * @var FilesInterface |
||
23 | */ |
||
24 | private $files; |
||
25 | |||
26 | /** |
||
27 | * @var RendererInterface |
||
28 | */ |
||
29 | private $renderer; |
||
30 | |||
31 | /** |
||
32 | * @var string |
||
33 | */ |
||
34 | private $outputFile; |
||
35 | |||
36 | /** |
||
37 | * SingleFileWriter constructor. |
||
38 | * |
||
39 | * @param FilesInterface $files |
||
40 | * @param RendererInterface $renderer |
||
41 | * @param string $outputFile |
||
42 | */ |
||
43 | public function __construct( |
||
52 | |||
53 | /** |
||
54 | * @inheritDoc |
||
55 | */ |
||
56 | public function write(array $classes) |
||
65 | } |
||
66 |