Conditions | 2 |
Paths | 2 |
Total Lines | 7 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
12 | public function writeConfigurationFile(Configuration $configuration, string $path, bool $skipDefaults = true) |
||
13 | { |
||
14 | if (!file_put_contents($path, $this->buildConfigurationFile($configuration, $skipDefaults))) |
||
15 | { |
||
16 | throw new \RuntimeException("Cannot write configuration file to {$path}"); |
||
17 | } |
||
18 | } |
||
19 | |||
49 |