From 9fbc9cd927a76ab1d80b4cd90eb6c35db34cb3c2 Mon Sep 17 00:00:00 2001 From: Patrick Henninger Date: Fri, 21 Dec 2018 18:48:26 +0100 Subject: [PATCH] Remove type from parameter --- tests/CartTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/CartTest.php b/tests/CartTest.php index 2003e08..6fa4d36 100644 --- a/tests/CartTest.php +++ b/tests/CartTest.php @@ -938,7 +938,7 @@ class CartTest extends TestCase * * @return \Gloudemans\Shoppingcart\Cart */ - private function getCartDiscount( float $discount = 0 ) + private function getCartDiscount( $discount = 0 ) { $cart = $this->getCart(); $cart->setGlobalDiscount( 50 );