| 1 | <?php |
||
| 8 | class Bank implements Arrayable |
||
| 9 | { |
||
| 10 | /** @var string */ |
||
| 11 | public $ispb; |
||
| 12 | |||
| 13 | /** @var string */ |
||
| 14 | public $compe; |
||
| 15 | |||
| 16 | /** @var string */ |
||
| 17 | public $name; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * This validate and return an array |
||
| 21 | * @return array |
||
| 22 | */ |
||
| 23 | public function toArray(): array |
||
| 28 | |||
| 29 | /** |
||
| 30 | * This function validate the PixCashout type |
||
| 31 | * |
||
| 32 | * @return void |
||
| 33 | */ |
||
| 34 | public function validate() |
||
| 39 | } |
||
| 40 |