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);
|
|
|
|
|
2018-03-10 14:24:39 +00:00
|
|
|
$forkStart = empty($_SERVER['REQUEST_TIME_FLOAT']) ? \microtime(true) : $_SERVER['REQUEST_TIME_FLOAT'];
|
2018-09-12 13:40:20 +00:00
|
|
|
$forkPublic = __DIR__ . '/public';
|
|
|
|
$forkPublicPrefix = '/public';
|
2017-03-13 16:14:57 +00:00
|
|
|
|
2018-09-12 13:40:20 +00:00
|
|
|
require __DIR__ . '/app/bootstrap.php';
|