Total Complexity | 2 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Changes | 3 | ||
Bugs | 0 | Features | 2 |
1 | <?php |
||
16 | class Plugin extends BasePlugin |
||
17 | { |
||
18 | /** |
||
19 | * {@inheritDoc} |
||
20 | * |
||
21 | * @codeCoverageIgnore |
||
22 | */ |
||
23 | public function bootstrap(PluginApplicationInterface $app): void |
||
24 | { |
||
25 | parent::bootstrap($app); |
||
26 | |||
27 | $app->addPlugin(ElasticSearchPlugin::class); |
||
28 | } |
||
29 | |||
30 | /** |
||
31 | * @inheritDoc |
||
32 | */ |
||
33 | public function console(CommandCollection $commands): CommandCollection |
||
38 | } |
||
39 | } |
||
40 |