From d6c0f2f72255d077fd37d84dd24c08212b1bc055 Mon Sep 17 00:00:00 2001 From: Patrick Henninger Date: Mon, 18 Feb 2019 16:04:50 +0100 Subject: [PATCH] style --- src/Cart.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Cart.php b/src/Cart.php index 429cc32..2ffead8 100644 --- a/src/Cart.php +++ b/src/Cart.php @@ -2,6 +2,7 @@ namespace Gloudemans\Shoppingcart; +use Carbon\Carbon; use Closure; use Gloudemans\Shoppingcart\Contracts\Buyable; use Gloudemans\Shoppingcart\Contracts\InstanceIdentifier; @@ -12,7 +13,6 @@ use Illuminate\Contracts\Events\Dispatcher; use Illuminate\Database\DatabaseManager; use Illuminate\Session\SessionManager; use Illuminate\Support\Collection; -use Carbon\Carbon; class Cart { @@ -40,15 +40,15 @@ class Cart private $instance; /** - * Holds the creation date of the cart - * + * Holds the creation date of the cart. + * * @var mixed */ private $createdAt; /** - * Holds the update date of the cart - * + * Holds the update date of the cart. + * * @var mixed */ private $updatedAt;