Conditions | 3 |
Paths | 4 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 3 |
Changes | 0 |
1 | <?php |
||
52 | 2 | public function addBarcode(string $barcode): SendToDeliveryBasketRequest |
|
53 | { |
||
54 | 2 | if ($this->barcodes === null) { |
|
55 | 2 | $this->barcodes = []; |
|
56 | } |
||
57 | 2 | if (in_array($barcode, $this->barcodes)) { |
|
|
|||
58 | 1 | throw new \InvalidArgumentException("Barcode: $barcode already exists."); |
|
59 | } |
||
60 | 2 | $this->barcodes[] = $barcode; |
|
61 | 2 | return $this; |
|
62 | } |
||
64 |