1 | <?php |
||
7 | class WidgetAnnotationEvent extends Event |
||
|
|||
8 | { |
||
9 | private $widgetName; |
||
10 | private $receiverProperties; |
||
11 | |||
12 | public function __construct($widgetName, $receiverProperties) |
||
17 | |||
18 | /** |
||
19 | * Get widget name. |
||
20 | * |
||
21 | * @return string |
||
22 | */ |
||
23 | public function getWidgetName() |
||
27 | |||
28 | /** |
||
29 | * Get receiverProperties. |
||
30 | * |
||
31 | * @return array |
||
32 | */ |
||
33 | public function getReceiverProperties() |
||
37 | } |
||
38 |