From 0c93056d66e8b836e571c69cc8ec3282c73bc74b Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Thu, 22 Apr 2021 15:35:14 +0200 Subject: [PATCH] Equals sign alignment fixed NO_CI --- Localization/Money.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Localization/Money.php b/Localization/Money.php index 91876dfb3..5ba257610 100644 --- a/Localization/Money.php +++ b/Localization/Money.php @@ -55,8 +55,8 @@ final class Money extends FloatInt */ public function __construct(int | float | string $value = 0, string $thousands = ',', string $decimal = '.', string $symbol = '', int $position = 0) { - $this->symbol = $symbol; - $this->position = $position; + $this->symbol = $symbol; + $this->position = $position; parent::__construct($value, $thousands, $decimal); } @@ -75,8 +75,8 @@ final class Money extends FloatInt */ public function setLocalization(string $thousands = ',', string $decimal = '.', string $symbol = '', int $position = 0) : self { - $this->symbol = $symbol; - $this->position = $position; + $this->symbol = $symbol; + $this->position = $position; parent::setLocalization($thousands, $decimal);