1 | <?php |
||
6 | class PaymentRequest extends Response |
||
7 | { |
||
8 | use ResultTrait; |
||
9 | |||
10 | /** |
||
11 | * @var string |
||
12 | */ |
||
13 | protected $paymentRequestId; |
||
14 | |||
15 | /** |
||
16 | * @var string |
||
17 | */ |
||
18 | protected $url; |
||
19 | |||
20 | /** |
||
21 | * @var string |
||
22 | */ |
||
23 | protected $dynamicJavascriptUrl; |
||
24 | |||
25 | /** |
||
26 | * @return string |
||
27 | */ |
||
28 | 3 | public function getPaymentRequestId() : string |
|
32 | |||
33 | /** |
||
34 | * @return string |
||
35 | */ |
||
36 | 3 | public function getUrl() : string |
|
40 | |||
41 | /** |
||
42 | * @return string |
||
43 | */ |
||
44 | 3 | public function getDynamicJavascriptUrl() : string |
|
48 | |||
49 | 6 | protected function init() |
|
59 | } |
||
60 |
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.