| 1 | <?php |
||
| 5 | abstract class Beneficiario implements BeneficiarioInterface |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * All of the user's attributes. |
||
| 9 | * |
||
| 10 | * @var array |
||
| 11 | */ |
||
| 12 | protected $attributes; |
||
| 13 | |||
| 14 | public function __construct(array $attributes) |
||
| 18 | |||
| 19 | public function getRazaoSocial() |
||
| 23 | |||
| 24 | public function getConta() |
||
| 28 | |||
| 29 | public function getAgencia() |
||
| 33 | |||
| 34 | public function getCarteira() |
||
| 38 | |||
| 39 | public function getCpfCnpj() |
||
| 43 | |||
| 44 | public function getEndereco() |
||
| 48 | |||
| 49 | public function getCidadeEstado() |
||
| 53 | |||
| 54 | } |