Skip to content
Snippets Groups Projects
Product.php 344 B
Newer Older
Pavel's avatar
Pavel committed
<?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;
    }
}