Skip to content

Commit 96a1ea4

Browse files
authored
Move non default values to config
Move non default values to config
1 parent 3850fc8 commit 96a1ea4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

system/Format/JSONFormatter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ class JSONFormatter implements FormatterInterface
5757
public function format($data)
5858
{
5959
$options = $config->formatterOptions['application/json'] ?? 0;
60-
$options = $options | JSON_UNESCAPED_UNICODE | JSON_UNESCAPED_SLASHES | JSON_PARTIAL_OUTPUT_ON_ERROR ;
60+
$options = $options | JSON_PARTIAL_OUTPUT_ON_ERROR ;
6161

6262
$options = ENVIRONMENT === 'production' ? $options : $options | JSON_PRETTY_PRINT;
6363

0 commit comments

Comments
 (0)