1 | <?php |
||
7 | class Prepaid extends Report |
||
8 | { |
||
9 | /** |
||
10 | * Check whether account type is acceptable by NASK |
||
11 | * |
||
12 | * @param string $accountType |
||
13 | * |
||
14 | * @return bool |
||
15 | */ |
||
16 | private function isAccountType($accountType) |
||
26 | |||
27 | /** |
||
28 | * Set account type in conjunction with payments report. |
||
29 | * |
||
30 | * Use either this or setFundsAccountType. Never combine them in single frame. |
||
31 | * |
||
32 | * Acceptable accountType: |
||
33 | * <ul> |
||
34 | * <li>DOMAIN</li> |
||
35 | * <li>ENUM</li> |
||
36 | * </ul> |
||
37 | * |
||
38 | * @see Prepaid::setFundsAccountType() |
||
39 | * |
||
40 | * @uses Prepaid::isAccountType() |
||
41 | * |
||
42 | * @param string $accountType |
||
43 | * |
||
44 | * @throws \Exception On wrong account type |
||
45 | */ |
||
46 | public function setPaymentsAccountType($accountType) |
||
53 | |||
54 | /** |
||
55 | * Set account type in conjunction with payments report. |
||
56 | * |
||
57 | * Use either this or setPaymentsAccountType. Never combine them in single frame. |
||
58 | * |
||
59 | * Acceptable accountType: |
||
60 | * <ul> |
||
61 | * <li>DOMAIN</li> |
||
62 | * <li>ENUM</li> |
||
63 | * </ul> |
||
64 | * |
||
65 | * @see Prepaid::setPaymentsAccountType() |
||
66 | * |
||
67 | * @uses Prepaid::isAccountType() |
||
68 | * |
||
69 | * @param string $accountType |
||
70 | * |
||
71 | * @throws \Exception On wrong account type |
||
72 | */ |
||
73 | public function setFundsAccountType($accountType) |
||
80 | } |
||
81 |