mirror of
https://github.com/openvk/chandler.git
synced 2024-11-15 03:31:12 +03:00
7 lines
217 B
PHP
7 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();
|