| 1 | <?php |
||
| 5 | final class IndexPreUpdateEvent |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * @var array |
||
| 9 | */ |
||
| 10 | private $neededItems; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * @var string |
||
| 14 | */ |
||
| 15 | private $tableName; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @var int |
||
| 19 | */ |
||
| 20 | private $uid; |
||
| 21 | |||
| 22 | public function __construct(array $neededItems, string $tableName, int $uid) |
||
| 28 | |||
| 29 | public function getNeededItems(): array |
||
| 33 | |||
| 34 | public function setNeededItems(array $neededItems): void |
||
| 38 | |||
| 39 | public function getTableName(): string |
||
| 43 | |||
| 44 | public function getUid(): int |
||
| 48 | } |
||
| 49 |