From 4a00c40ed85d0a70dc751b3e59df8c1ae740ae6f Mon Sep 17 00:00:00 2001 From: David Date: Mon, 16 May 2022 10:35:35 +0200 Subject: [PATCH] Remove unnecessary parameter declarations --- src/Currencies/USD.php | 1 - tests/Currencies/CZK.php | 1 - tests/Currencies/EUR.php | 1 - 3 files changed, 3 deletions(-) diff --git a/src/Currencies/USD.php b/src/Currencies/USD.php index bfbbf45..ebd6714 100644 --- a/src/Currencies/USD.php +++ b/src/Currencies/USD.php @@ -15,5 +15,4 @@ class USD extends Currency protected int $displayDecimals = 2; protected int $rounding = 2; protected string $prefix = '$'; - protected bool $trimTrailingDecimalZeros = false; } diff --git a/tests/Currencies/CZK.php b/tests/Currencies/CZK.php index 0954472..6cb93c5 100644 --- a/tests/Currencies/CZK.php +++ b/tests/Currencies/CZK.php @@ -15,5 +15,4 @@ class CZK extends Currency protected string $thousandsSeparator = '.'; protected int $rounding = 2; protected string $suffix = ' Kč'; - protected bool $trimTrailingDecimalZeros = false; } diff --git a/tests/Currencies/EUR.php b/tests/Currencies/EUR.php index 22cfd59..5890eac 100644 --- a/tests/Currencies/EUR.php +++ b/tests/Currencies/EUR.php @@ -13,5 +13,4 @@ class EUR extends Currency protected int $displayDecimals = 2; protected int $rounding = 0; protected string $suffix = ' €'; - protected bool $trimTrailingDecimalZeros = false; }