for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Umbrella\Ya\RetornoBoleto\Cnab\Cnab150;
use Umbrella\Ya\RetornoBoleto\Cnab\CnabTrailerInterface;
class Trailer extends AbstractCnab150 implements CnabTrailerInterface
{
protected $valorTotal;
protected $quantidadeRegistros;
public function getValorTotal()
return $this->valorTotal;
}
public function getQuantidadeRegistros()
return $this->quantidadeRegistros;
public function setValorTotal($valorTotal)
$this->valorTotal = $valorTotal;
return $this;
public function setQuantidadeRegistros($quantidadeRegistros)
$this->quantidadeRegistros = $quantidadeRegistros;