From 66cc01f59408b6c410a50a0df8e3d7887cfd9a35 Mon Sep 17 00:00:00 2001 From: Petr Knap <8299754+petrknap@users.noreply.github.com> Date: Sun, 27 Apr 2025 22:56:15 +0200 Subject: [PATCH] fix: removed final --- src/Coder.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Coder.php b/src/Coder.php index b70ea98..2e8b0e4 100644 --- a/src/Coder.php +++ b/src/Coder.php @@ -19,7 +19,7 @@ abstract class Coder implements CoderInterface, Stringable /** * @param string $data may contain binary data */ - final public function __construct( + public function __construct( public readonly string $data = '', ) { }