diff --git a/src/TIN.php b/src/TIN.php index de616a6..ddc9f7d 100644 --- a/src/TIN.php +++ b/src/TIN.php @@ -162,7 +162,7 @@ private function parse(string $slug, bool $strict): array return [ 'country' => (string) $country, - 'tin' => true === $strict ? $this->normalizeTin((string) $tin) : (string) $tin, + 'tin' => true === $strict ? (string) $tin : $this->normalizeTin((string) $tin), ]; } }