1 | <?php |
||
8 | class IndexUpdateEvent extends Event |
||
9 | { |
||
10 | /** |
||
11 | * @var array |
||
12 | */ |
||
13 | protected $objects = array(); |
||
14 | |||
15 | 1 | public function addObject(IndexItem $object) |
|
19 | |||
20 | /** |
||
21 | * @param mixed $objects |
||
22 | */ |
||
23 | 1 | public function setObjects(array $objects) |
|
27 | |||
28 | /** |
||
29 | * @return mixed |
||
30 | */ |
||
31 | 1 | public function getObjects() |
|
35 | } |
||
36 |