1 | <?php declare(strict_types=1); |
||
10 | class ApplicationConfigLogger implements ConfigLogger |
||
11 | { |
||
12 | /** |
||
13 | * @var string |
||
14 | */ |
||
15 | private $rootDirectory; |
||
16 | |||
17 | private $output = []; |
||
18 | |||
19 | public function __construct(string $rootDirectory) |
||
23 | |||
24 | public function mainConfigFiles(string $mainFile, ?string $overrideFile = null): void |
||
38 | |||
39 | public function notifyImportNotFound(string $import): void |
||
43 | |||
44 | public function importConfigFiles(string $import, string $mainFile, ?string $overrideFile = null): void |
||
59 | |||
60 | private function cleanUpPath(string $configFile): string |
||
64 | |||
65 | private function print(string $message): void |
||
69 | |||
70 | public function printOut(CLImate $cliMate): void |
||
79 | } |
||
80 |