| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 8 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 74 | 1 | public function jsonSerialize() |
|
| 75 | { |
||
| 76 | return [ |
||
| 77 | 1 | 'title' => $this->getTitle(), |
|
| 78 | 1 | 'subtitle' => $this->getSubtitle(), |
|
| 79 | 1 | 'quantity' => $this->quantity, |
|
| 80 | 1 | 'price' => $this->price, |
|
| 81 | 1 | 'currency' => $this->currency, |
|
| 82 | 1 | 'image_url' => $this->getImageUrl(), |
|
| 83 | 1 | ]; |
|
| 84 | } |
||
| 85 | } |
||
| 86 |