Total Complexity | 1 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
8 | class CartItemResource extends Ressource |
||
9 | { |
||
10 | protected $keys = [ |
||
11 | 'name', |
||
12 | 'description', |
||
13 | 'productCode', |
||
14 | 'imageURL', |
||
15 | 'unitPrice', |
||
16 | 'quantity', |
||
17 | 'productSKU', |
||
18 | 'productRisk', |
||
19 | ]; |
||
20 | |||
21 | /** |
||
22 | * CartItemResource constructor. |
||
23 | * @param int $unitPrice |
||
24 | * @param int $quantity |
||
25 | * @throws Exception |
||
26 | */ |
||
27 | public function __construct(int $unitPrice, int $quantity) |
||
35 |