From aae1b7b9b46fb05015f76b0a2163f38ac83300ff Mon Sep 17 00:00:00 2001 From: Patrick Date: Mon, 18 Jan 2021 22:21:50 +0100 Subject: [PATCH] Update BuyableProduct.php --- tests/Fixtures/BuyableProduct.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/Fixtures/BuyableProduct.php b/tests/Fixtures/BuyableProduct.php index be0c08e..e891f99 100644 --- a/tests/Fixtures/BuyableProduct.php +++ b/tests/Fixtures/BuyableProduct.php @@ -8,9 +8,9 @@ use Illuminate\Database\Eloquent\Model; class BuyableProduct extends Model implements Buyable { protected $attributes = [ - 'id' => 1, - 'name' => 'Item name', - 'price' => 10.00, + 'id' => 1, + 'name' => 'Item name', + 'price' => 10.00, 'weight' => 0, ];