diff options
author | Mario <mario@mariovavti.com> | 2021-02-15 18:27:20 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2021-02-15 18:27:20 +0000 |
commit | 18c8f1b903e90ca3632520b90d21ec3770bf6e0b (patch) | |
tree | 542ce373170e5693d32516aa11d7569ed312ad03 /vendor/brick/math/src/BigDecimal.php | |
parent | 4171a0136ad4f14bdd5d7621b4c7decd3e942c8c (diff) | |
download | volse-hubzilla-18c8f1b903e90ca3632520b90d21ec3770bf6e0b.tar.gz volse-hubzilla-18c8f1b903e90ca3632520b90d21ec3770bf6e0b.tar.bz2 volse-hubzilla-18c8f1b903e90ca3632520b90d21ec3770bf6e0b.zip |
composer update brick/math
Diffstat (limited to 'vendor/brick/math/src/BigDecimal.php')
-rw-r--r-- | vendor/brick/math/src/BigDecimal.php | 22 |
1 files changed, 14 insertions, 8 deletions
diff --git a/vendor/brick/math/src/BigDecimal.php b/vendor/brick/math/src/BigDecimal.php index 287177140..7707b166e 100644 --- a/vendor/brick/math/src/BigDecimal.php +++ b/vendor/brick/math/src/BigDecimal.php @@ -96,7 +96,10 @@ final class BigDecimal extends BigNumber */ public static function zero() : BigDecimal { - /** @psalm-suppress ImpureStaticVariable */ + /** + * @psalm-suppress ImpureStaticVariable + * @var BigDecimal|null $zero + */ static $zero; if ($zero === null) { @@ -115,7 +118,10 @@ final class BigDecimal extends BigNumber */ public static function one() : BigDecimal { - /** @psalm-suppress ImpureStaticVariable */ + /** + * @psalm-suppress ImpureStaticVariable + * @var BigDecimal|null $one + */ static $one; if ($one === null) { @@ -134,7 +140,10 @@ final class BigDecimal extends BigNumber */ public static function ten() : BigDecimal { - /** @psalm-suppress ImpureStaticVariable */ + /** + * @psalm-suppress ImpureStaticVariable + * @var BigDecimal|null $ten + */ static $ten; if ($ten === null) { @@ -677,11 +686,7 @@ final class BigDecimal extends BigNumber */ public function toBigInteger() : BigInteger { - if ($this->scale === 0) { - $zeroScaleDecimal = $this; - } else { - $zeroScaleDecimal = $this->dividedBy(1, 0); - } + $zeroScaleDecimal = $this->scale === 0 ? $this : $this->dividedBy(1, 0); return BigInteger::create($zeroScaleDecimal->value); } @@ -763,6 +768,7 @@ final class BigDecimal extends BigNumber * This method is only here to implement interface Serializable and cannot be accessed directly. * * @internal + * @psalm-suppress RedundantPropertyInitializationCheck * * @param string $value * |