Skip to content

Commit

Permalink
Update MRZ class and parser documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
alphaolomi committed Nov 15, 2023
1 parent b24e797 commit 57c9bdb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion src/Mrz.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
namespace Alphaolomi\Mrz;

/**
* Class Mrz
* Write MRZ code for TD1 format
*
* @package Alphaolomi\Mrz
* @version 1.0.0
Expand Down Expand Up @@ -57,6 +57,9 @@ public function __construct(
$this->handleBiggerDocumentNumbers();
}

/**
* Generate TD1 code
*/
public function TD1CodeGenerator(): string
{
return $this->line1() . PHP_EOL . $this->line2() . PHP_EOL . $this->line3();
Expand Down
2 changes: 1 addition & 1 deletion src/MrzParser.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
use Exception;

/**
* Class MrzParser
* Parse MRZ (Machine Readable Zone) from Passport, Visa or ID-1
*
* @package AlphaOlomi\Mrz*
* @version 1.0.0
Expand Down

0 comments on commit 57c9bdb

Please sign in to comment.