| Conditions | 2 |
| Paths | 2 |
| Total Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 6 |
| Changes | 0 | ||
| 1 | <?php |
||
| 25 | public function write( array $config ) { |
||
| 26 | $this->createDirIfNeeded(); |
||
| 27 | |||
| 28 | $writeResult = @file_put_contents( |
||
| 29 | $this->configPath, |
||
| 30 | json_encode( $config, JSON_PRETTY_PRINT ) |
||
| 31 | ); |
||
| 32 | |||
| 33 | if ( $writeResult === false ) { |
||
| 34 | throw new RuntimeException( 'Could not write the config file' ); |
||
| 35 | } |
||
| 36 | } |
||
| 37 | |||
| 63 |