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

Commit

Permalink
Merge pull request #1 from PackageFactory/bugfix/typoIntOrFloatOrNull
Browse files Browse the repository at this point in the history
BUGFIX: Typo inside `Extractor::intOrFloatOrNull`
  • Loading branch information
grebaldi authored Dec 17, 2022
2 parents bc04fc6 + 7deb4b2 commit b8a135d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Extractor.php
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ public function intOrFloat(): int|float
* @api
* @return int|float|null
*/
public function intOrfloatOrNull(): int|float|null
public function intOrFloatOrNull(): int|float|null
{
if ($this->data === null || is_int($this->data) || is_float($this->data)) {
return $this->data;
Expand Down

0 comments on commit b8a135d

Please sign in to comment.