#!/usr/bin/env php register(); $application = new Application('Advent of Code by trizz'); $application->add(new Puzzle()); $application->add(new ExecuteDay()); try { $application->run(); } catch (Exception $e) { echo $e->getMessage(); }