Skip to content

Commit

Permalink
Fix cs fixer & PHPStan error #278
Browse files Browse the repository at this point in the history
  • Loading branch information
girishpanchal30 committed Jan 7, 2022
1 parent c40eb1b commit 9221e1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/SiteConfig/ConfigBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ public function mergeConfig(SiteConfig $currentConfig, SiteConfig $newConfig)
// because final values override former values in case of named keys
$currentConfig->http_header = array_merge($newConfig->http_header, $currentConfig->http_header);

if (count($currentConfig->find_string) !== count($currentConfig->replace_string)) {
if (\count($currentConfig->find_string) !== \count($currentConfig->replace_string)) {
return $currentConfig;
}

Expand Down

0 comments on commit 9221e1b

Please sign in to comment.