@@ -62,7 +62,7 @@ |
||
| 62 | 62 | } |
| 63 | 63 | break; |
| 64 | 64 | case CartItem::ITEM_TAXABLE: |
| 65 | - if(!is_bool($value)) { |
|
| 65 | + if (!is_bool($value)) { |
|
| 66 | 66 | throw new InvalidTaxableValue('The taxable option must be a boolean'); |
| 67 | 67 | } |
| 68 | 68 | break; |
@@ -291,7 +291,7 @@ |
||
| 291 | 291 | |
| 292 | 292 | $itemModel->with($this->itemModelRelations)->find($this->id); |
| 293 | 293 | |
| 294 | - if(empty($itemModel)) { |
|
| 294 | + if (empty($itemModel)) { |
|
| 295 | 295 | throw new ModelNotFound('Could not find the item model for '.$this->id); |
| 296 | 296 | } |
| 297 | 297 | |