We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1017b23 commit df52059Copy full SHA for df52059
src/Model/Traits/ValueTrait.php
@@ -67,7 +67,7 @@ protected function renderTyped($value)
67
foreach ($value as $item) {
68
$parts[] = $this->renderTyped($item);
69
}
70
- $value = implode(', ', $parts);
+ $value = '[' . implode(', ', $parts) . ']';
71
72
break;
73
default:
0 commit comments