| Conditions | 3 |
| Paths | 4 |
| Total Lines | 13 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 12 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 16 | public function __construct() { |
||
| 17 | $config = array(); |
||
| 18 | |||
| 19 | $file_config = getcwd() . '/.wpdb.json'; |
||
| 20 | if ( is_readable( $file_config ) ) { |
||
| 21 | $config = json_decode( file_get_contents( $file_config ), JSON_OBJECT_AS_ARRAY ); |
||
| 22 | } |
||
| 23 | |||
| 24 | if ( ! empty( $config['dir_dump'] ) ) { |
||
| 25 | self::$dir_dump = $config['dir_dump']; |
||
| 26 | } |
||
| 27 | |||
| 28 | } |
||
| 29 | |||
| 31 |