Skip to content

Commit

Permalink
Merge pull request #169 from soullivaneuh/gtin8-type-fix
Browse files Browse the repository at this point in the history
fix(gtin8): wrong interface signature match
  • Loading branch information
ronanguilloux committed Feb 26, 2023
2 parents 0446b03 + 4cc0b08 commit d939c3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/IsoCodes/Gtin8.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class Gtin8 extends Gtin implements IsoCodeInterface
/**
* @param mixed $gtin8
*/
public static function validate($gtin8): bool
public static function validate($gtin8)
{
return parent::check($gtin8, 8);
}
Expand Down

0 comments on commit d939c3f

Please sign in to comment.