Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions src/Collection/Primitive/Number.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@
* @method static static makeOrNull(int|string|null $number, int $scale = 2)
*
* @method string abs()
* @method string add(float|int|string $value)
* @method string divide(float|int|string $value)
* @method string multiply(float|int|string $value)
* @method string mod(float|int|string $value)
* @method string add(float|int|string|BigNumber $value)
* @method string divide(float|int|string|BigNumber $value)
* @method string multiply(float|int|string|BigNumber $value)
* @method string mod(float|int|string|BigNumber $value)
* @method string pow(int|string $value)
* @method string sqrt()
* @method string subtract(float|int|string $value)
* @method string subtract(float|int|string|BigNumber $value)
*
* @see \PHP\Math\BigNumber\BigNumber
*
Expand Down