Equals sign alignment fixed NO_CI

This commit is contained in:
Dennis Eichhorn 2021-04-22 15:35:14 +02:00 committed by GitHub
parent 457340668d
commit 0c93056d66
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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);