*/ final class SeoData implements Arrayable { /** * @param array $attributes */ public function __construct(private readonly array $attributes) { } /** * @return array */ public function toArray(): array { return $this->attributes; } }