<?php namespace IQDEV\Search\Document; final class Product { public string $id; public string $title; public array $info; public function __construct( string $id, string $title, array $info = [] ) { $this->id = $id; $this->title = $title; $this->info = $info; } }