Skip to content

Commit

Permalink
fix do numeroRegistro...
Browse files Browse the repository at this point in the history
  • Loading branch information
diorgesl committed Oct 8, 2020
1 parent dc944f7 commit f9e95ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Pagador.php
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ public function getNumeroRegistro()
*/
public function getTipoRegistro()
{
return strlen($this->numeroRegistro) >= 14 ? 2 : 1;
return strlen($this->numeroRegistro) > 14 ? 2 : 1;
}

/**
Expand Down

0 comments on commit f9e95ad

Please sign in to comment.