1 | <?php |
||
22 | class XmlResponse extends AbstractResponse |
||
23 | { |
||
24 | /** |
||
25 | * @return array |
||
26 | */ |
||
27 | public function getData() |
||
31 | |||
32 | /** |
||
33 | * @return bool |
||
34 | */ |
||
35 | public function isRedirect() |
||
39 | |||
40 | /** |
||
41 | * @return string|null |
||
42 | */ |
||
43 | public function getRedirectUrl() |
||
47 | |||
48 | /** |
||
49 | * Get the required redirect method (either GET or POST). |
||
50 | * |
||
51 | * @return string |
||
52 | */ |
||
53 | public function getRedirectMethod() |
||
57 | |||
58 | /** |
||
59 | * Gets the redirect form data array, if the redirect method is POST. |
||
60 | * |
||
61 | * @return null |
||
62 | */ |
||
63 | public function getRedirectData() |
||
67 | |||
68 | /** |
||
69 | * @return bool |
||
70 | */ |
||
71 | 10 | public function isSuccessful() |
|
75 | |||
76 | /** |
||
77 | * @return string|null |
||
78 | */ |
||
79 | public function getTransactionReference() |
||
97 | |||
98 | /** |
||
99 | * @return null |
||
100 | */ |
||
101 | 2 | public function getMessage() |
|
113 | |||
114 | /** |
||
115 | * @return string |
||
116 | */ |
||
117 | 8 | public function getCode() |
|
129 | } |
||
130 |
An attempt at access to an undefined property has been detected. This may either be a typographical error or the property has been renamed but there are still references to its old name.
If you really want to allow access to undefined properties, you can define magic methods to allow access. See the php core documentation on Overloading.