Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
| AbstractSearch | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
| __construct | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
| 1 | <?php |
| 2 | |
| 3 | /** |
| 4 | * Abstract class for phpMyFAQ search classes. |
| 5 | * |
| 6 | * This Source Code Form is subject to the terms of the Mozilla Public License, |
| 7 | * v. 2.0. If a copy of the MPL was not distributed with this file, You can |
| 8 | * obtain one at https://mozilla.org/MPL/2.0/. |
| 9 | * |
| 10 | * @package phpMyFAQ |
| 11 | * @author Thorsten Rinne <thorsten@phpmyfaq.de> |
| 12 | * @copyright 2010-2026 phpMyFAQ Team |
| 13 | * @license https://www.mozilla.org/MPL/2.0/ Mozilla Public License Version 2.0 |
| 14 | * @link https://www.phpmyfaq.de |
| 15 | * @since 2010-06-06 |
| 16 | */ |
| 17 | |
| 18 | declare(strict_types=1); |
| 19 | |
| 20 | namespace phpMyFAQ\Search; |
| 21 | |
| 22 | use phpMyFAQ\Configuration; |
| 23 | use stdClass; |
| 24 | |
| 25 | /** |
| 26 | * Class AbstractSearch |
| 27 | * |
| 28 | * @package phpMyFAQ\Search |
| 29 | */ |
| 30 | abstract 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 | } |