File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ Install the library using [composer][1]. Add the following to your `composer.jso
16
16
``` json
17
17
{
18
18
"require" : {
19
- "brazanation/documents" : " 0.1 .*"
19
+ "brazanation/documents" : " 0.3 .*"
20
20
}
21
21
}
22
22
```
@@ -30,7 +30,7 @@ $ composer.phar install
30
30
or
31
31
32
32
``` sh
33
- $ composer require brazanation/documents 0.1 .*
33
+ $ composer require brazanation/documents 0.3 .*
34
34
```
35
35
36
36
### CPF (cadastro de pessoas físicas)
@@ -93,9 +93,9 @@ use Brazanation\Documents\NFeAccessKey;
93
93
use Brazanation\Documents\Exception\InvalidDocument as InvalidDocumentException;
94
94
95
95
try {
96
- $pispasep = new NFeAccessKey('52060433009911002506550120000007800267301615');
97
- echo $pispasep ; // prints 52060433009911002506550120000007800267301615
98
- echo $pispasep ->format(); // prints 5206 0433 0099 1100 2506 5501 2000 0007 8002 6730 1615
96
+ $nfeKey = new NFeAccessKey('52060433009911002506550120000007800267301615');
97
+ echo $nfeKey ; // prints 52060433009911002506550120000007800267301615
98
+ echo $nfeKey ->format(); // prints 5206 0433 0099 1100 2506 5501 2000 0007 8002 6730 1615
99
99
catch (InvalidDocumentException $e){
100
100
echo $e->getMessage();
101
101
}
You can’t perform that action at this time.
0 commit comments