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

Commit

Permalink
BUGFIX: Typo inside Extractor::intOrFloatOrNull
Browse files Browse the repository at this point in the history
  • Loading branch information
mhsdesign authored Nov 25, 2022
1 parent bc04fc6 commit 7deb4b2
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 7deb4b2

Please sign in to comment.