Skip to content
This repository was archived by the owner on Aug 28, 2024. It is now read-only.

Commit 7deb4b2

Browse files
authored
BUGFIX: Typo inside Extractor::intOrFloatOrNull
1 parent bc04fc6 commit 7deb4b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Extractor.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ public function intOrFloat(): int|float
223223
* @api
224224
* @return int|float|null
225225
*/
226-
public function intOrfloatOrNull(): int|float|null
226+
public function intOrFloatOrNull(): int|float|null
227227
{
228228
if ($this->data === null || is_int($this->data) || is_float($this->data)) {
229229
return $this->data;

0 commit comments

Comments
 (0)