diff --git a/src/Base32.php b/src/Base32.php
index 7508b3df6f59cc4fff77caca98047d746d6d02d7..f4662e178de2a038fda821d05417d981888687b0 100644
--- a/src/Base32.php
+++ b/src/Base32.php
@@ -222,7 +222,6 @@ abstract class Base32 implements EncoderInterface
      * @return string
      *
      * @throws TypeError
-     * @psalm-suppress RedundantCondition
      */
     protected static function doDecode(
         string $src,
diff --git a/src/Base64.php b/src/Base64.php
index f5716179f17438770121f39773bc3df493f969d9..3d3c898633bc8b847cf793f7a7425fe9ce396b31 100644
--- a/src/Base64.php
+++ b/src/Base64.php
@@ -129,7 +129,6 @@ abstract class Base64 implements EncoderInterface
      *
      * @throws RangeException
      * @throws TypeError
-     * @psalm-suppress RedundantCondition
      */
     public static function decode(string $encodedString, bool $strictPadding = false): string
     {