fix: JsonString이 string->int auto casting하는 버그 수정

This commit is contained in:
2022-07-09 13:02:13 +09:00
parent 39c88c11c4
commit 8a1f8f8e2c
+1 -1
View File
@@ -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
) {
}
}