2017-03-13 16:14:57 +00:00
|
|
|
<?php
|
2020-12-21 10:40:19 +00:00
|
|
|
/**
|
|
|
|
* 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)
|
|
|
|
*/
|
2017-03-13 16:14:57 +00:00
|
|
|
|
2020-10-14 13:01:43 +00:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2021-01-26 15:32:34 +00:00
|
|
|
$forkStart = $_SERVER['REQUEST_TIME_FLOAT'] ?? \microtime(true);
|
2018-09-12 13:40:20 +00:00
|
|
|
$forkPublicPrefix = '/public';
|
2017-03-13 16:14:57 +00:00
|
|
|
|
2018-09-12 13:40:20 +00:00
|
|
|
require __DIR__ . '/app/bootstrap.php';
|