Skip to content

Commit 300e210

Browse files
authored
Merge pull request #17 from finecho/analysis-zRNNB7
Apply fixes from StyleCI
2 parents 701eb0a + 74deb44 commit 300e210

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Providers/AbstractProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ public function getLogisticsCompanyAliases($company)
7171

7272
$index = \array_search($company, \array_column($companies, 'name'));
7373

74-
if ($index !== false) {
74+
if (false !== $index) {
7575
return $companies[$index]['aliases'][\strtolower($this->getProviderName())];
7676
}
7777

0 commit comments

Comments
 (0)