1 | <?php |
||
7 | class Exporter |
||
8 | { |
||
9 | /** |
||
10 | * @var Output |
||
11 | */ |
||
12 | protected $output; |
||
13 | |||
14 | /** |
||
15 | * Export constructor. |
||
16 | * |
||
17 | * @param Output $output |
||
18 | */ |
||
19 | 3 | public function __construct(Output $output) |
|
23 | |||
24 | 3 | /** |
|
25 | * Set the output converter |
||
26 | 3 | * |
|
27 | 3 | * @param Output $output |
|
28 | */ |
||
29 | 3 | public function setOutput(Output $output) |
|
33 | |||
34 | /** |
||
35 | * Return the converted environment variables |
||
36 | * |
||
37 | * @return string |
||
38 | */ |
||
39 | public function output() : string |
||
43 | } |