We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c7da47 commit a119662Copy full SHA for a119662
src/Collection/Primitive/Number.php
@@ -29,6 +29,17 @@
29
* @method static static from(int|string $number, int $scale = 2)
30
* @method static static makeOrNull(int|string|null $number, int $scale = 2)
31
*
32
+ * @method string abs()
33
+ * @method string add(float|int|string $value)
34
+ * @method string divide(float|int|string $value)
35
+ * @method string multiply(float|int|string $value)
36
+ * @method string mod(float|int|string $value)
37
+ * @method string pow(int|string $value)
38
+ * @method string sqrt()
39
+ * @method string subtract(float|int|string $value)
40
+ *
41
+ * @see \PHP\Math\BigNumber\BigNumber
42
43
* @extends ValueObject<TKey, TValue>
44
*/
45
class Number extends ValueObject
0 commit comments