From 272c7af925471200c813120fdca9c0010d2e9c08 Mon Sep 17 00:00:00 2001 From: kakiuchi-shigenao Date: Wed, 7 May 2025 11:28:05 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20ErrorValue=E3=82=AF=E3=83=A9=E3=82=B9?= =?UTF-8?q?=E3=81=AEof=E3=83=A1=E3=82=BD=E3=83=83=E3=83=89=E3=82=92final?= =?UTF-8?q?=E3=81=AB=E5=A4=89=E6=9B=B4=20Fixes=20#9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Error/ErrorValue.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Error/ErrorValue.php b/src/Error/ErrorValue.php index aa58cd3..865c107 100644 --- a/src/Error/ErrorValue.php +++ b/src/Error/ErrorValue.php @@ -18,7 +18,7 @@ final private function __construct( ) { } - public static function of(string $code, string $message): static + final public static function of(string $code, string $message): static { return new static($code, $message); }