1234567891011121314 |
- <?php
- /**
- * This file is part of the ForkBB <https://github.com/forkbb>.
- *
- * @copyright (c) Visman <mio.visman@yandex.ru, https://github.com/MioVisman>
- * @license The MIT License (MIT)
- */
- declare(strict_types=1);
- $forkStart = $_SERVER['REQUEST_TIME_FLOAT'] ?? \microtime(true);
- $forkPublicPrefix = '/public';
- require __DIR__ . '/app/bootstrap.php';
|