Lines 100.00% 1 / 1
Methods 100.00% 1 / 1
Classes 100.00% 1 / 1
Covered by tests of size
Name Lines Methods CRAP
 __construct 100.00% 1 / 1 100.00% 1 / 1 1
30abstract class AbstractSearch
31{
32    /**
33     * Result set: a database result handle for the SQL engines, or a list
34     * of stdClass hits for Elasticsearch/OpenSearch.
35     */
36    protected mixed $resultSet;
37
38    /**
39     * AbstractSearch constructor.
40     */
41    public function __construct(
42        protected Configuration $configuration,
43    ) {
44    }
45}