Conditions | 3 |
Paths | 3 |
Total Lines | 14 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 3.2098 |
Changes | 0 |
1 | <?php |
||
15 | 1 | public function convertToDatabaseValue($value, AbstractPlatform $platform = null) |
|
16 | { |
||
17 | 1 | if (null === $value) { |
|
18 | return null; |
||
19 | } |
||
20 | |||
21 | 1 | $encoded = json_encode($value, JSON_UNESCAPED_UNICODE); |
|
22 | |||
23 | 1 | if (JSON_ERROR_NONE !== json_last_error()) { |
|
24 | throw ConversionException::conversionFailedSerialization($value, 'json', json_last_error_msg()); |
||
25 | } |
||
26 | |||
27 | 1 | return $encoded; |
|
28 | } |
||
29 | |||
38 |