From 5ef030d07fb4e5d2023e76480b481569718a637a Mon Sep 17 00:00:00 2001 From: StyleCI Bot Date: Tue, 21 May 2024 18:21:47 +0000 Subject: [PATCH] Apply fixes from StyleCI [ci skip] [skip ci] --- src/LaraCart.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/LaraCart.php b/src/LaraCart.php index c73b8de..d14d4dd 100644 --- a/src/LaraCart.php +++ b/src/LaraCart.php @@ -767,7 +767,7 @@ public static function formatMoney($number, $locale = null, $currencyCode = null // When prices in cents needs to be formatted, divide by 100 to allow formatting in whole units if (config('laracart.prices_in_cents', false) === true && $format) { $number = $number / 100; - // When prices in cents do not need to be formatted then cast to integer and round the price + // When prices in cents do not need to be formatted then cast to integer and round the price } elseif (config('laracart.prices_in_cents', false) === true && !$format) { $number = (int) round($number); } else {