Skip to content
Snippets Groups Projects
SearchQueryResponse.php 221 B
Newer Older
Pavel's avatar
Pavel committed
<?php

namespace IQDEV\Search\Query;

use IQDEV\Search\Result;

final class SearchQueryResponse
{
    public Result $result;

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