Files
gym-tracker/public/index.php
T
AlexBa16 d36bce3e86 init
2026-06-11 21:44:19 +02:00

10 lines
206 B
PHP

<?php
use App\Kernel;
require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
return static function (array $context) {
return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
};