diff --git a/src/Alu/AdventOfCode/Year2015/Day14/Race/Manager.php b/src/Alu/AdventOfCode/Year2015/Day14/Race/Manager.php index 3a29246..764591a 100644 --- a/src/Alu/AdventOfCode/Year2015/Day14/Race/Manager.php +++ b/src/Alu/AdventOfCode/Year2015/Day14/Race/Manager.php @@ -30,4 +30,4 @@ public function winner(): Reindeer return $reindeer->getDistanceTravelled() > $carry->getDistanceTravelled() ? $reindeer : $carry; }, $this->participants[0]); } -} \ No newline at end of file +} diff --git a/src/Alu/AdventOfCode/Year2015/Day14/Race/PointManager.php b/src/Alu/AdventOfCode/Year2015/Day14/Race/PointManager.php index e0d338b..871181d 100644 --- a/src/Alu/AdventOfCode/Year2015/Day14/Race/PointManager.php +++ b/src/Alu/AdventOfCode/Year2015/Day14/Race/PointManager.php @@ -64,4 +64,4 @@ public function getPoints(): array { return $this->points; } -} \ No newline at end of file +} diff --git a/src/Alu/AdventOfCode/Year2015/Day14/Race/Reindeer.php b/src/Alu/AdventOfCode/Year2015/Day14/Race/Reindeer.php index a154b55..4f80759 100644 --- a/src/Alu/AdventOfCode/Year2015/Day14/Race/Reindeer.php +++ b/src/Alu/AdventOfCode/Year2015/Day14/Race/Reindeer.php @@ -20,8 +20,7 @@ public function __construct( public int $distance, public int $duration, public int $restDuration - ) - { + ) { $this->resting = false; $this->restTime = 0; $this->stamina = $this->duration; @@ -87,4 +86,4 @@ private function needsRest(): bool { return $this->stamina === 0; } -} \ No newline at end of file +}