1 | <?php |
||
7 | class IndexDeleteEvent extends Event |
||
8 | { |
||
9 | /** |
||
10 | * @var string |
||
11 | */ |
||
12 | protected $objectType; |
||
13 | |||
14 | /** |
||
15 | * @var string |
||
16 | */ |
||
17 | protected $otherId; |
||
18 | |||
19 | /** |
||
20 | * @param string $objectType |
||
21 | * @param string $otherId |
||
22 | */ |
||
23 | public function __construct($objectType, $otherId) |
||
28 | |||
29 | /** |
||
30 | * @return string |
||
31 | */ |
||
32 | public function getObjectType() |
||
36 | |||
37 | /** |
||
38 | * @return string |
||
39 | */ |
||
40 | public function getOtherId() |
||
44 | } |
||
45 |