Skip to content

Commit ebee1fe

Browse files
authored
Merge pull request #54 from WolfForest/patch-1
fix bug
2 parents ce6c0e1 + 555d38a commit ebee1fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Vin.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ private function identifyCountry() : ?string
215215
}
216216

217217
foreach (REGIONS[$this->wmi[0]]['countries'] as $chars => $title) {
218-
if (! (false === strpbrk($this->wmi[1], $chars))) {
218+
if (! (false === strpbrk($this->wmi[1], (string) $chars))) {
219219
return $title;
220220
}
221221
}

0 commit comments

Comments
 (0)