blessing-skin-server/public/index.php
Pig Fang 3cf19d8656
Apply fixes from StyleCI (#11)
This pull request applies code style fixes from an analysis carried out by [StyleCI](https://github.styleci.io).

---

For more information, click [here](https://github.styleci.io/analyses/8wKwbZ).
2019-03-02 22:58:37 +08:00

18 lines
337 B
PHP
Executable File

<?php
/**
* Entrance of Blessing Skin Server.
*
* @author printempw <h@prinzeugen.net>
*/
@ini_set('display_errors', 'on');
require __DIR__.'/../bootstrap/autoload.php';
if (! isset($GLOBALS['env_checked'])) {
require __DIR__.'/../bootstrap/chkenv.php';
}
// Process the request
require __DIR__.'/../bootstrap/kernel.php';