1 | <?php |
||
20 | class AttributeTypeAvMetaEvent extends ActionEvent |
||
21 | { |
||
22 | /** @var ConnectionInterface|null */ |
||
23 | protected $connectionInterface = null; |
||
24 | |||
25 | /** @var AttributeTypeAvMeta */ |
||
26 | protected $attributeAvMeta = null; |
||
27 | |||
28 | /** |
||
29 | * @param AttributeTypeAvMeta $attributeAvMeta |
||
30 | */ |
||
31 | public function __construct(AttributeTypeAvMeta $attributeAvMeta) |
||
35 | |||
36 | /** |
||
37 | * @return AttributeTypeAvMeta |
||
38 | */ |
||
39 | public function getAttributeTypeAvMeta() |
||
43 | |||
44 | /** |
||
45 | * @param $attributeAvMeta |
||
46 | * @return $this |
||
47 | */ |
||
48 | public function setAttributeTypeAvMeta(AttributeTypeAvMeta $attributeAvMeta) |
||
54 | |||
55 | /** |
||
56 | * @return null|ConnectionInterface |
||
57 | */ |
||
58 | public function getConnectionInterface() |
||
62 | |||
63 | /** |
||
64 | * @param ConnectionInterface $connectionInterface |
||
65 | * @return $this |
||
66 | */ |
||
67 | public function setConnectionInterface(ConnectionInterface $connectionInterface) |
||
73 | } |
||
74 |