Skip to content

Commit

Permalink
Clean up unused Psalm suppress
Browse files Browse the repository at this point in the history
  • Loading branch information
BenMorel committed Jan 5, 2021
1 parent a4df6ad commit a49cf5d
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/BigNumber.php
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,6 @@ public static function of($value) : BigNumber
};

if (\preg_match(self::PARSE_REGEXP, $value, $matches) !== 1) {
/** @psalm-suppress ImpureFunctionCall */
$throw();
}

Expand Down Expand Up @@ -117,7 +116,6 @@ public static function of($value) : BigNumber
$exponent = $getMatch('exponent');

if ($integral === null && $fractional === null) {
/** @psalm-suppress ImpureFunctionCall */
$throw();
}

Expand Down

0 comments on commit a49cf5d

Please sign in to comment.