| Total Complexity | 4 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 5 | final class ElasticsearchContext implements ElasticsearchContextInterface |
||
| 6 | { |
||
| 7 | public function __construct(private readonly string $className, private readonly string $activityLogIndex, private readonly string $currentDataTrackerIndex) |
||
| 8 | { |
||
| 9 | } |
||
| 10 | |||
| 11 | public function getActivityLogIndex(): string |
||
| 12 | { |
||
| 13 | return $this->activityLogIndex; |
||
| 14 | } |
||
| 15 | |||
| 16 | public function getCurrentDataTrackerIndex(): string |
||
| 19 | } |
||
| 20 | |||
| 21 | public function getClassName(): string |
||
| 26 |