1 | <?php |
||
13 | class FileOutput implements FileOutputInterface |
||
14 | { |
||
15 | /** |
||
16 | * @var Local |
||
17 | */ |
||
18 | private $adapter; |
||
19 | |||
20 | /** |
||
21 | * @var Filesystem |
||
22 | */ |
||
23 | private $filesystem; |
||
24 | |||
25 | /** |
||
26 | * @inheritdoc |
||
27 | */ |
||
28 | 2 | public function file($name, $content, $override) |
|
36 | |||
37 | 2 | private function lazyInit($fileName) |
|
44 | |||
45 | /** |
||
46 | * @return bool |
||
47 | */ |
||
48 | 2 | private function shouldInit() |
|
52 | |||
53 | 2 | private function defineContentType(&$name, &$content) |
|
66 | } |