| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 24 | public function __construct($price, $productName, $qtyOrdered, $qtyShipped, $sku, $subTotal) |
||
| 25 | { |
||
| 26 | $this->price = $price; |
||
| 27 | $this->productName = $productName; |
||
| 28 | $this->qtyOrdered = $qtyOrdered; |
||
| 29 | $this->qtyShipped = $qtyShipped; |
||
| 30 | $this->sku = $sku; |
||
| 31 | $this->subTotal = $subTotal; |
||
| 32 | } |
||
| 33 | |||
| 83 | } |