From 8a1f8f8e2cba5fed540aa6f824244f75a2d223d3 Mon Sep 17 00:00:00 2001 From: Hide_D Date: Sat, 9 Jul 2022 13:02:13 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20JsonString=EC=9D=B4=20string->int=20auto?= =?UTF-8?q?=20casting=ED=95=98=EB=8A=94=20=EB=B2=84=EA=B7=B8=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/sammo/DTO/Attr/JsonString.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sammo/DTO/Attr/JsonString.php b/src/sammo/DTO/Attr/JsonString.php index 16390295..6ad7d04b 100644 --- a/src/sammo/DTO/Attr/JsonString.php +++ b/src/sammo/DTO/Attr/JsonString.php @@ -7,7 +7,7 @@ class JsonString { public function __construct( public readonly bool $emptyItemIsArray = false, - public readonly int $jsonFlag = JSON_UNESCAPED_UNICODE | JSON_UNESCAPED_SLASHES | JSON_NUMERIC_CHECK + public readonly int $jsonFlag = JSON_UNESCAPED_UNICODE | JSON_UNESCAPED_SLASHES ) { } }