1 | <?php |
||
19 | class DepositForm extends Model |
||
20 | { |
||
21 | /** |
||
22 | * @var float the amount of money to be deposited |
||
23 | */ |
||
24 | public $amount; |
||
25 | |||
26 | /** |
||
27 | * @var string desired currency |
||
28 | */ |
||
29 | public $currency; |
||
30 | |||
31 | /** |
||
32 | * @var string the route that will be passed to merchant |
||
33 | * in order to redirect user to a custom page |
||
34 | */ |
||
35 | public $finishUrl; |
||
36 | |||
37 | /** |
||
38 | * {@inheritdoc} |
||
39 | */ |
||
40 | public function rules() |
||
56 | |||
57 | public function attributes() |
||
61 | |||
62 | /** |
||
63 | * {@inheritdoc} |
||
64 | */ |
||
65 | public function attributeLabels() |
||
72 | } |
||
73 |