Skip to content

Commit 394c290

Browse files
authored
Remove type declaration in NumericValue constructor
1 parent 3702672 commit 394c290

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Runtime/NumericValue.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
class NumericValue extends RuntimeValue {
99
public string $type = "NumericValue";
1010

11-
public function __construct(float|int $value) {
11+
public function __construct($value) {
1212
parent::__construct($value);
1313
}
14-
}
14+
}

0 commit comments

Comments
 (0)