Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php declare(strict_types=1); |
||
13 | public function triggerElasticsearchIndexing(Connection $connection): void |
||
14 | { |
||
15 | $connection->executeStatement( |
||
16 | ' |
||
17 | REPLACE INTO app_config (`key`, `value`) VALUES |
||
18 | (?, ?) |
||
19 | ', |
||
20 | [SystemUpdateListener::CONFIG_KEY, json_encode(['*'], \JSON_THROW_ON_ERROR)] |
||
21 | ); |
||
24 |