From fdf29eb2210318225d4b31b6fe100e9396cfe371 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim=20D=C3=BCsterhus?= <duesterhus@woltlab.com> Date: Wed, 15 Jun 2022 16:29:11 +0200 Subject: [PATCH] Remove obsolete psalm suppressions These were added in 9c3177f6343ef2645538b8d9b5c83d5533e9527d, but no longer appear to do anything in Psalm 4.23.0@f1fe6ff483bf325c803df9f510d09a03fd796f88. --- src/Base32.php | 1 - src/Base64.php | 1 - 2 files changed, 2 deletions(-) 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 @@ 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 f571617..3d3c898 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 { -- GitLab