1 | <?php |
||
8 | class AdapterChainEvent extends Event |
||
9 | { |
||
10 | /** |
||
11 | * @var Request |
||
12 | */ |
||
13 | private $request; |
||
14 | |||
15 | /** |
||
16 | * getIdentity |
||
17 | * |
||
18 | * @return mixed |
||
19 | */ |
||
20 | public function getIdentity() |
||
24 | |||
25 | /** |
||
26 | * setIdentity |
||
27 | * |
||
28 | * @param mixed $identity |
||
29 | * @return AdapterChainEvent |
||
30 | */ |
||
31 | public function setIdentity($identity = null) |
||
41 | |||
42 | /** |
||
43 | * getCode |
||
44 | * |
||
45 | * @return int |
||
46 | */ |
||
47 | public function getCode() |
||
51 | |||
52 | /** |
||
53 | * setCode |
||
54 | * |
||
55 | * @param int $code |
||
56 | * @return AdapterChainEvent |
||
57 | */ |
||
58 | public function setCode($code = null) |
||
63 | |||
64 | /** |
||
65 | * getMessages |
||
66 | * |
||
67 | * @return array |
||
68 | */ |
||
69 | public function getMessages() |
||
73 | |||
74 | /** |
||
75 | * setMessages |
||
76 | * |
||
77 | * @param array $messages |
||
78 | * @return AdapterChainEvent |
||
79 | */ |
||
80 | public function setMessages($messages = array()) |
||
85 | |||
86 | /** |
||
87 | * getRequest |
||
88 | * |
||
89 | * @return Request |
||
90 | */ |
||
91 | public function getRequest() |
||
95 | |||
96 | /** |
||
97 | * setRequest |
||
98 | * |
||
99 | * @param Request $request |
||
100 | * @return AdapterChainEvent |
||
101 | */ |
||
102 | public function setRequest(Request $request) |
||
108 | } |
||
109 |