1 | <?php |
||
19 | class DepositForm extends Model |
||
20 | { |
||
21 | /** |
||
22 | * @var float the amount of money |
||
23 | */ |
||
24 | public $amount; |
||
25 | |||
26 | /** |
||
27 | * @var string the route that will be passed to merchant |
||
28 | * in order to redirect user to a custom page |
||
29 | */ |
||
30 | public $finishUrl; |
||
31 | |||
32 | /** |
||
33 | * {@inheritdoc} |
||
34 | */ |
||
35 | public function rules() |
||
43 | |||
44 | public function attributes() |
||
48 | |||
49 | /** |
||
50 | * {@inheritdoc} |
||
51 | */ |
||
52 | public function attributeLabels() |
||
58 | } |
||
59 |