Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
113 | 1 | public function jsonSerialize() |
|
114 | { |
||
115 | return [ |
||
116 | 1 | 'title' => $this->title, |
|
117 | 1 | 'subtitle' => $this->subtitle, |
|
118 | 1 | 'quantity' => $this->quantity, |
|
119 | 1 | 'price' => $this->price, |
|
120 | 1 | 'currency' => $this->currency, |
|
121 | 1 | 'image_url' => $this->imageUrl, |
|
122 | 1 | ]; |
|
123 | } |
||
124 | } |
||
125 |