| Conditions | 4 |
| Paths | 3 |
| Total Lines | 13 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 4.0312 |
| Changes | 0 | ||
| 1 | <?php |
||
| 29 | 2 | public function read() |
|
| 30 | { |
||
| 31 | 2 | if (!is_readable($this->file)) { |
|
| 32 | 1 | return; |
|
| 33 | } |
||
| 34 | |||
| 35 | 1 | $data = file_get_contents($this->file); |
|
| 36 | 1 | $data = parse_ini_string(str_replace([': ', ':'], ['= ', ''], $data)); //stupid convert from .rc to .ini |
|
| 37 | |||
| 38 | 1 | if (isset($data['api_key']) && $data['api_key']) { |
|
| 39 | 1 | return trim($data['api_key']); |
|
| 40 | } |
||
| 41 | } |
||
| 42 | } |
||
| 43 |