1 | <?php |
||
17 | class BillPaymentValidator |
||
18 | { |
||
19 | private $billPayment; |
||
20 | |||
21 | /** |
||
22 | * BillPaymentValidator constructor. |
||
23 | * @param BillPayment $billPayment |
||
24 | */ |
||
25 | public function __construct(BillPayment $billPayment) |
||
29 | |||
30 | /** |
||
31 | * This validate the bank account |
||
32 | * |
||
33 | * @return void |
||
34 | */ |
||
35 | public function validate(): void |
||
42 | |||
43 | /** |
||
44 | * This validate a bank branch |
||
45 | * |
||
46 | * @return void |
||
47 | * @throws \InvalidArgumentException |
||
48 | */ |
||
49 | private function validateBankBranch() |
||
50 | { |
||
51 | $bankBranch = $this->billPayment->bankBranch; |
||
52 | if (is_null($bankBranch) || !is_string($bankBranch) || !is_numeric($bankBranch)) { |
||
53 | throw new \InvalidArgumentException('branch should be a numeric string'); |
||
54 | } |
||
55 | } |
||
56 | |||
57 | /** |
||
58 | * This validate a bank account |
||
59 | * |
||
60 | * @return void |
||
61 | * @throws \InvalidArgumentException |
||
62 | */ |
||
63 | private function validateBankAccount() |
||
64 | { |
||
65 | $bankAccount = $this->billPayment->bankAccount; |
||
66 | if (is_null($bankAccount) || !is_string($bankAccount) || !is_numeric($bankAccount)) { |
||
67 | throw new \InvalidArgumentException('account should be a numeric string'); |
||
68 | } |
||
69 | } |
||
70 | |||
71 | /** |
||
72 | * This validates a amount |
||
73 | * |
||
74 | * @return void |
||
75 | * @throws \InvalidArgumentException |
||
76 | */ |
||
77 | private function validateAmount() |
||
84 | |||
85 | /** |
||
86 | * This validates a given ID |
||
87 | * |
||
88 | * @return void |
||
89 | * @throws \InvalidArgumentException |
||
90 | */ |
||
91 | private function validateId() |
||
98 | } |
||
99 |