From 4ab1d4879a3232b66d98bff663d2d657620dd395 Mon Sep 17 00:00:00 2001 From: Patrick Date: Mon, 18 Jan 2021 22:22:13 +0100 Subject: [PATCH] Update BuyableProductTrait.php --- tests/Fixtures/BuyableProductTrait.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/Fixtures/BuyableProductTrait.php b/tests/Fixtures/BuyableProductTrait.php index aa2c701..9bfee7e 100644 --- a/tests/Fixtures/BuyableProductTrait.php +++ b/tests/Fixtures/BuyableProductTrait.php @@ -10,9 +10,9 @@ class BuyableProductTrait extends Model implements Buyable use \Gloudemans\Shoppingcart\CanBeBought; protected $attributes = [ - 'id' => 1, - 'name' => 'Item name', - 'price' => 10.00, + 'id' => 1, + 'name' => 'Item name', + 'price' => 10.00, 'weight' => 0, ]; }