Example #1
0
 /**
  * Numero Documento tem 11 digitos
  *
  * @return string
  */
 public function getNumeroDocumento()
 {
     return $this->preencher(parent::getNumeroDocumento(), 11, 0);
 }
Example #2
0
 /**
  * Carteira tem 2 digitos.
  *
  * @return string
  * @throws BoletoException
  */
 public function getCarteira()
 {
     return $this->preencher(parent::getCarteira(), 2, 0);
 }