13 lines
244 B
PHP
13 lines
244 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
use App\Kernel;
|
||
|
|
|
||
|
|
if( !defined( 'APP_ROOT' ) )
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Définit la racine de l'application en chemin absolue.
|
||
|
|
*/
|
||
|
|
define( 'APP_ROOT', realpath( __DIR__ . '/../') . '/' );
|
||
|
|
|
||
|
|
require_once '../src/Kernel.php';
|
||
|
|
Kernel::start();
|