The doc comment float|int|numeric-string at position 4 could not be parsed: Unknown type name 'numeric-string' at position 4 in float|int|numeric-string.
Loading history...
20
*/
21
public static function from(float|int|string $number): self
22
{
23
return OperandsCache::get($number, static fn(): self => new self($number));
The doc comment float|int|numeric-string at position 4 could not be parsed: Unknown type name 'numeric-string' at position 4 in float|int|numeric-string.
Loading history...
36
*/
37
private function __construct(float|int|string $number)