| Total Complexity | 4 |
| Total Lines | 26 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types = 1); |
||
| 16 | class CreateIndexTask extends BuildTask |
||
| 17 | { |
||
| 18 | |||
| 19 | protected $title = 'Create Index'; |
||
| 20 | |||
| 21 | protected $description = 'Create an index of a given name'; |
||
| 22 | |||
| 23 | protected $enabled = true; |
||
| 24 | |||
| 25 | private static $segment = 'create-index'; |
||
|
|
|||
| 26 | |||
| 27 | public function run(\SilverStripe\Control\HTTPRequest $request) |
||
| 44 |