Skip to content

Commit 52ff38e

Browse files
committed
WIP Feature: new table for values
1 parent f2f6c9a commit 52ff38e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

app/Runner/Check/CheckHostsharingDomain.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ protected function action(): bool
3636
'letsencrypt',
3737
'fastcgi',
3838
];
39-
$this->addDiffs($target_general, $domain);
40-
$this->addDiffs($target_options, $domainoptions);
39+
$this->addDiffsAssoc($target_general, $domain);
40+
$this->addDiffsList('domainoptions', $target_options, $domainoptions);
4141

4242
return empty($this->diff);
4343

app/Runner/Runner.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ protected function addDiffsAssoc($target, $actual){
7373
}
7474
}
7575

76-
protected function addDiffList($key, $target, $actual)
76+
protected function addDiffsList($key, $target, $actual)
7777
{
7878
$list = array_merge($target, $actual);
7979
$i = 0;

0 commit comments

Comments
 (0)