| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 3 | ||
| Bugs | 0 | Features | 3 |
| 1 | <?php |
||
| 56 | public function __construct($id, $title, $reference, $description, $price, $available, $url) |
||
| 57 | { |
||
| 58 | $this->id = $id; |
||
| 59 | $this->title = $title; |
||
| 60 | $this->reference = $reference; |
||
| 61 | $this->description = $description; |
||
| 62 | $this->price = $price; |
||
| 63 | $this->available = $available; |
||
| 64 | $this->url = $url; |
||
| 65 | } |
||
| 66 | |||
| 124 |