From df9a672e88f30dfd850951d2156d2c1ec09faae6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20Rub=C3=A9l?= Date: Tue, 14 Mar 2023 09:21:18 +0100 Subject: [PATCH] =?UTF-8?q?Styling=20=F0=9F=A4=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Models/Coupon.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/Models/Coupon.php b/src/Models/Coupon.php index 9ca4bc5..b637441 100644 --- a/src/Models/Coupon.php +++ b/src/Models/Coupon.php @@ -34,12 +34,12 @@ class Coupon extends Model implements CouponContract * @var array */ protected $casts = [ - 'code' => 'string', - 'type' => 'string', - 'value' => 'string', - 'data' => 'collection', - 'quantity' => 'integer', - 'limit' => 'integer', + 'code' => 'string', + 'type' => 'string', + 'value' => 'string', + 'data' => 'collection', + 'quantity' => 'integer', + 'limit' => 'integer', 'expires_at' => 'datetime', ];