We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 701eb0a + 74deb44 commit 300e210Copy full SHA for 300e210
1 file changed
src/Providers/AbstractProvider.php
@@ -71,7 +71,7 @@ public function getLogisticsCompanyAliases($company)
71
72
$index = \array_search($company, \array_column($companies, 'name'));
73
74
- if ($index !== false) {
+ if (false !== $index) {
75
return $companies[$index]['aliases'][\strtolower($this->getProviderName())];
76
}
77
0 commit comments