1 | <?php |
||
20 | class ActiveFieldEvent extends Event |
||
21 | { |
||
22 | /** |
||
23 | * @var ActiveField related active field instance |
||
24 | */ |
||
25 | public $field; |
||
26 | |||
27 | |||
28 | /** |
||
29 | * Constructor. |
||
30 | * @param ActiveField $field the active field associated with this event. |
||
31 | * @param array $config name-value pairs that will be used to initialize the object properties |
||
32 | */ |
||
33 | 16 | public function __construct($field, $config = []) |
|
38 | } |