| Conditions | 4 |
| Paths | 3 |
| Total Lines | 13 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 4.0466 |
| Changes | 0 | ||
| 1 | <?php |
||
| 17 | 1 | public function convertToSQL($value) |
|
| 18 | { |
||
| 19 | 1 | if ($value === null || $value === '') { |
|
| 20 | return null; |
||
| 21 | } |
||
| 22 | |||
| 23 | 1 | $json = json_encode($value, $this->json_encode_options); |
|
| 24 | |||
| 25 | 1 | if ($json === false) { |
|
| 26 | 1 | throw new RuntimeException(json_last_error_msg()); |
|
| 27 | } |
||
| 28 | |||
| 29 | 1 | return $json; |
|
| 30 | } |
||
| 45 |