mirror of
https://github.com/openvk/chandler.git
synced 2024-11-15 11:39:09 +03:00
8 lines
217 B
PHP
8 lines
217 B
PHP
|
<?php declare(strict_types=1);
|
||
|
ini_set('display_errors', '1');
|
||
|
ini_set('display_startup_errors', '1');
|
||
|
error_reporting(E_ALL & ~E_DEPRECATED);
|
||
|
|
||
|
$bootstrap = require("../chandler/Bootstrap.php");
|
||
|
$bootstrap->ignite();
|