Corrected property access in InformationField

This commit is contained in:
netkas 2025-01-27 03:51:28 -05:00
parent 93eff1320f
commit 3e5199d776

View file

@ -46,7 +46,7 @@
public function toArray(): array public function toArray(): array
{ {
return [ return [
'name' => $this->name->getValue(), 'name' => $this->name->value,
'value' => $this->value, 'value' => $this->value,
]; ];
} }