| 1 | <?php |
||
| 7 | class BeneficiarioCEF extends Beneficiario |
||
| 8 | { |
||
| 9 | public function __construct($load_from_config = TRUE, array $attributes = NULL) |
||
| 10 | { |
||
| 11 | if ($load_from_config) |
||
| 12 | { |
||
| 13 | parent::__construct(config('boletos')); |
||
| 14 | } elseif ($attributes) |
||
| 15 | { |
||
| 16 | parent::__construct($attributes); |
||
| 17 | } |
||
| 18 | } |
||
| 19 | |||
| 20 | /* |
||
| 21 | * Se refere a conta, no formato definido pelo banco |
||
| 22 | */ |
||
| 23 | public function getCodigoBeneficiario() |
||
| 27 | |||
| 28 | } |