We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ccc6db7 commit 0e95871Copy full SHA for 0e95871
README.md
@@ -42,7 +42,7 @@ Registration of individuals or Tax Identification
42
use Brazanation\Documents\Cpf;
43
44
$document = Cpf::createFromString('06843273173');
45
-if (false === $cpf) {
+if (false === $document) {
46
echo "Not Valid";
47
}
48
echo $document; // prints 06843273173
@@ -91,8 +91,8 @@ $document = Cnh::createFromString('83592802666');
91
if (false === $document) {
92
93
94
-echo $cnh; // prints 83592802666
95
-echo $cnh->format(); // prints 83592802666
+echo $document; // prints 83592802666
+echo $document->format(); // prints 83592802666
96
```
97
98
### Chave de Acesso Sped (chave da NFe, CTe e MDFe)
0 commit comments