mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-02-09 05:38:39 +00:00
Equals sign alignment fixed NO_CI
This commit is contained in:
parent
457340668d
commit
0c93056d66
|
|
@ -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)
|
public function __construct(int | float | string $value = 0, string $thousands = ',', string $decimal = '.', string $symbol = '', int $position = 0)
|
||||||
{
|
{
|
||||||
$this->symbol = $symbol;
|
$this->symbol = $symbol;
|
||||||
$this->position = $position;
|
$this->position = $position;
|
||||||
|
|
||||||
parent::__construct($value, $thousands, $decimal);
|
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
|
public function setLocalization(string $thousands = ',', string $decimal = '.', string $symbol = '', int $position = 0) : self
|
||||||
{
|
{
|
||||||
$this->symbol = $symbol;
|
$this->symbol = $symbol;
|
||||||
$this->position = $position;
|
$this->position = $position;
|
||||||
|
|
||||||
parent::setLocalization($thousands, $decimal);
|
parent::setLocalization($thousands, $decimal);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user