| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 13 | public function getActivityLogIndexConfig(ElasticsearchContextInterface $elasticsearchContext): array |
||
| 14 | { |
||
| 15 | return [ |
||
| 16 | 'index' => $elasticsearchContext->getActivityLogIndex(), |
||
| 17 | 'body' => [ |
||
| 18 | 'mappings' => [ |
||
| 19 | 'date_detection' => $this->dateDetection, |
||
| 20 | 'dynamic_date_formats' => [$this->dateFormats], |
||
| 21 | 'properties' => $this->activityLogProperties, |
||
| 22 | ], |
||
| 41 |