Total Complexity | 1 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | class ClearErrorsTask extends BuildTask |
||
11 | { |
||
12 | /** |
||
13 | * @var string URLSegment |
||
14 | */ |
||
15 | private static $segment = 'SolrClearErrorsTask'; |
||
1 ignored issue
–
show
|
|||
16 | /** |
||
17 | * @var string Title |
||
18 | */ |
||
19 | protected $title = 'Clear out all errors from Solr in the database'; |
||
20 | /** |
||
21 | * @var string Description |
||
22 | */ |
||
23 | protected $description = 'Remove all errors in the database that are related to Solr indexing/configuring etc.'; |
||
24 | |||
25 | /** |
||
26 | * @inheritDoc |
||
27 | */ |
||
28 | 1 | public function run($request) |
|
31 | } |
||
32 | } |