Skip to content

Commit

Permalink
Merge pull request #685 from lcobucci/Slamdunk-patch-1
Browse files Browse the repository at this point in the history
SodiumBase64Polyfill: fix fallback method reference
  • Loading branch information
lcobucci committed Feb 19, 2021
2 parents 7959c5e + 6c37412 commit c544710
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/SodiumBase64Polyfill.php
Expand Up @@ -57,7 +57,7 @@ public static function bin2base64Fallback(string $decoded, int $variant): string
public static function base642bin(string $encoded, int $variant): string
{
if (! function_exists('sodium_base642bin')) {
return self::bin2base64Fallback($encoded, $variant); // @codeCoverageIgnore
return self::base642binFallback($encoded, $variant); // @codeCoverageIgnore
}

try {
Expand Down

0 comments on commit c544710

Please sign in to comment.