Eduardokum\LaravelBoleto\Boleto\Pessoa::getCepCidadeUf PHP Method

getCepCidadeUf() public method

Ex: 71000-000 - Brasília - DF
public getCepCidadeUf ( ) : string
return string
    public function getCepCidadeUf()
    {
        $dados = array_filter(array($this->getCep(), $this->getCidade(), $this->getUf()));
        return implode(' - ', $dados);
    }