| Total Complexity | 2 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 5 | trait Stringable |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * Converts model into json object |
||
| 9 | * @return string |
||
| 10 | */ |
||
| 11 | |||
| 12 | public function toString(): string |
||
| 13 | { |
||
| 14 | return \Safe\json_encode($this->toArray()); |
||
|
|
|||
| 15 | } |
||
| 16 | |||
| 17 | /** |
||
| 18 | * Converts model into json object |
||
| 19 | * @return string |
||
| 20 | */ |
||
| 21 | |||
| 22 | public function __toString(): string |
||
| 25 | } |
||
| 26 | } |