Conditions | 3 |
Paths | 3 |
Total Lines | 14 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
43 | public function set($model, $key, $value, $attributes) |
||
44 | { |
||
45 | if (is_null($value)) { |
||
46 | return null; |
||
47 | } |
||
48 | |||
49 | $value = json_encode($value); |
||
50 | |||
51 | if ($value === false) { |
||
52 | throw JsonEncodingException::forAttribute($this, $key, json_last_error_msg()); |
||
53 | } |
||
54 | |||
55 | return parent::set($model, $key, $value, $attributes); |
||
56 | } |
||
57 | } |
||
58 |