1 | <?php |
||
14 | class SolrIndexCheck implements EnvironmentCheck |
||
15 | { |
||
16 | /** |
||
17 | * @var null|string |
||
18 | */ |
||
19 | protected $indexClass; |
||
20 | |||
21 | /** |
||
22 | * @param string $indexClass Limit the index checks to the specified class and all its subclasses. |
||
23 | */ |
||
24 | public function __construct($indexClass = null) |
||
28 | |||
29 | /** |
||
30 | * {@inheritDoc} |
||
31 | * |
||
32 | * @return array |
||
33 | */ |
||
34 | public function check() |
||
65 | } |
||
66 |