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

Commit b8a135d

Browse files
authored
Merge pull request #1 from PackageFactory/bugfix/typoIntOrFloatOrNull
BUGFIX: Typo inside `Extractor::intOrFloatOrNull`
2 parents bc04fc6 + 7deb4b2 commit b8a135d

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)