1
0

more fixes for baseclass-branch changes

This commit is contained in:
2020-01-20 18:28:31 +01:00
parent 76abb91b92
commit d390250351
4 changed files with 52 additions and 20 deletions

View File

@@ -48,7 +48,7 @@ class AdventOfCode implements IWebsiteModule
public function listAllDays()
{
$r = [];
foreach ($this->staticData as $yeardata) foreach ($yeardata as $year => $daydata) $r []= $daydata;
foreach ($this->staticData as $year => $yeardata) foreach ($yeardata as $daydata) $r []= $daydata;
return $this->staticData;
}