| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 6 |
| Lines | 9 |
| Ratio | 100 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 38 | View Code Duplication | public function toJsonArray() |
|
| 39 | { |
||
| 40 | return [ |
||
| 41 | 'title' => $this->get('title'), |
||
| 42 | 'description' => $this->get('description'), |
||
| 43 | 'url' => $this->get('url'), |
||
| 44 | 'picurl' => $this->get('image'), |
||
| 45 | ]; |
||
| 46 | } |
||
| 47 | |||
| 58 |