Eduardokum\LaravelBoleto\Boleto\Banco\Bradesco::getCampoLivre PHP Method

getCampoLivre() protected method

Método para gerar o código da posição de 20 a 44
protected getCampoLivre ( ) : string
return string
    protected function getCampoLivre()
    {
        if ($this->campoLivre) {
            return $this->campoLivre;
        }
        return $this->campoLivre = Util::numberFormatGeral($this->getAgencia(), 4) . Util::numberFormatGeral($this->getCarteira(), 2) . Util::numberFormatGeral($this->getNossoNumero(), 11) . Util::numberFormatGeral($this->getConta(), 7) . '0';
    }