| 1 | <?php |
||
| 7 | final class IndexAllEvent |
||
| 8 | { |
||
| 9 | const POSITION_PRE = 'pre'; |
||
| 10 | |||
| 11 | const POSITION_POST = 'post'; |
||
| 12 | |||
| 13 | private $indexerService; |
||
| 14 | private $position; |
||
| 15 | |||
| 16 | public function __construct(IndexerService $indexerService, string $position) |
||
| 21 | |||
| 22 | public function getIndexerService(): IndexerService |
||
| 26 | |||
| 27 | public function getPosition(): string |
||
| 31 | } |
||
| 32 |