| 1 | <?php |
||
| 7 | trait HasItems |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @var \Treestoneit\ShoppingCart\Models\Cart |
||
| 11 | */ |
||
| 12 | protected $cart; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * Get the cart contents. |
||
| 16 | * |
||
| 17 | * @return \Treestoneit\ShoppingCart\Models\CartItemCollection|\Treestoneit\ShoppingCart\Models\CartItem[] |
||
| 18 | */ |
||
| 19 | public function items(): CartItemCollection |
||
| 23 | } |
||
| 24 |