Skip to content

Commit

Permalink
typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
HergenD committed Jul 28, 2020
1 parent 53ccb5f commit 729f36c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "werk365/identitydocuments",
"description": "Package to parse identity documents like passports",
"license": "MIT",
"version": "1.1.4",
"version": "1.1.5",
"authors": [
{
"name": "Hergen Dillema",
Expand Down
4 changes: 2 additions & 2 deletions src/IdentityDocuments.php
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ private static function parseMRZ(object $document): object
[18, 11],
]
));
$document->succes = true;
$document->success = true;
$document->error = null;
} elseif ($document->type === 'TD3') {
// Row 1
Expand Down Expand Up @@ -209,7 +209,7 @@ private static function parseMRZ(object $document): object
[21, 22],
]
);
$document->succes = true;
$document->success = true;
$document->error = null;
}
$document->parsed = (object) $document->parsed;
Expand Down

0 comments on commit 729f36c

Please sign in to comment.