| 1 | <?php |
||
| 7 | final class IndexSingleEvent |
||
| 8 | { |
||
| 9 | const POSITION_PRE = 'pre'; |
||
| 10 | |||
| 11 | const POSITION_POST = 'post'; |
||
| 12 | |||
| 13 | /** |
||
| 14 | * @var string |
||
| 15 | */ |
||
| 16 | private $configurationKey; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @var string |
||
| 20 | */ |
||
| 21 | private $tableName; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @var int |
||
| 25 | */ |
||
| 26 | private $uid; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @var IndexerService |
||
| 30 | */ |
||
| 31 | private $indexerService; |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @var string |
||
| 35 | */ |
||
| 36 | private $position; |
||
| 37 | |||
| 38 | public function __construct(string $configurationKey, string $tableName, int $uid, IndexerService $indexerService, string $position) |
||
| 46 | |||
| 47 | public function getConfigurationKey(): string |
||
| 51 | |||
| 52 | public function getTableName(): string |
||
| 56 | |||
| 57 | public function getUid(): int |
||
| 61 | |||
| 62 | public function getIndexerService(): IndexerService |
||
| 66 | |||
| 67 | public function getPosition(): string |
||
| 71 | } |
||
| 72 |