Several 'framework' fixes
This commit is contained in:
2
aoc21
2
aoc21
@ -5,6 +5,7 @@ require __DIR__.'/vendor/autoload.php';
|
||||
use AdventOfCode21\Day1;
|
||||
use AdventOfCode21\Day2;
|
||||
use AdventOfCode21\Day3;
|
||||
use AdventOfCode21\Day4;
|
||||
use AdventOfCode21\Puzzle;
|
||||
use Symfony\Component\Console\Application;
|
||||
|
||||
@ -14,5 +15,6 @@ $application->add(new Puzzle());
|
||||
$application->add(new Day1());
|
||||
$application->add(new Day2());
|
||||
$application->add(new Day3());
|
||||
$application->add(new Day4());
|
||||
|
||||
$application->run();
|
||||
|
Reference in New Issue
Block a user