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

namespace IQDEV\Search;

interface SearchService
{
    public function search(Query $q): Result;
}