Skip to content

Commit

Permalink
codigo cliente
Browse files Browse the repository at this point in the history
  • Loading branch information
luizguilhermefr committed Sep 22, 2017
1 parent 7b951f3 commit dc53f42
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions src/Boleto/Banco/Santander.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,51 @@ public function __construct(array $params = [])
public $variaveis_adicionais = [
'esconde_uso_banco' => true,
];

/**
* Código do cliente.
*
* @var int
*/
protected $codigoCliente;

/**
* Retorna o campo Agência/Beneficiário do boleto
*
* @return string
*/
public function getAgenciaCodigoBeneficiario()
{
$agencia = $this->getAgenciaDv() !== null ? $this->getAgencia() . '-' . $this->getAgenciaDv() : $this->getAgencia();
$codigoCliente = $this->getCodigoCliente();

return $agencia . ' / ' . $codigoCliente;
}

/**
* Retorna o código do cliente.
*
* @return int
*/
public function getCodigoCliente()
{
return $this->codigoCliente;
}

/**
* Define o código do cliente.
*
* @param int $codigoCliente
*
* @return AbstractBoleto
*/
public function setCodigoCliente($codigoCliente)
{
$this->codigoCliente = $codigoCliente;

return $this;
}

/**
* Define o código da carteira (Com ou sem registro)
*
Expand Down

0 comments on commit dc53f42

Please sign in to comment.