diff --git a/src/Base32.php b/src/Base32.php index 7508b3d..f4662e1 100644 --- a/src/Base32.php +++ b/src/Base32.php @@ -222,7 +222,6 @@ public static function decodeNoPadding(string $encodedString, bool $upper = fals * @return string * * @throws TypeError - * @psalm-suppress RedundantCondition */ protected static function doDecode( string $src, diff --git a/src/Base64.php b/src/Base64.php index f571617..3d3c898 100644 --- a/src/Base64.php +++ b/src/Base64.php @@ -129,7 +129,6 @@ protected static function doEncode(string $src, bool $pad = true): string * * @throws RangeException * @throws TypeError - * @psalm-suppress RedundantCondition */ public static function decode(string $encodedString, bool $strictPadding = false): string {