Skip to content
Snippets Groups Projects
SearchQueryResponse.php 235 B
Newer Older
Nikita Chernykh's avatar
Nikita Chernykh committed
<?php

namespace IQDEV\ElasticSearch\Query;

use IQDEV\ElasticSearch\Result;

final class SearchQueryResponse
{
    public Result $result;

    public function __construct(Result $result)
    {
        $this->result = $result;
    }
}