-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
26 lines (22 loc) · 744 Bytes
/
index.php
File metadata and controls
26 lines (22 loc) · 744 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?php
/**
* ile - A PHP Framework For Web
*
* @package ilex
* @author Gift Isacc <giftisacc54@gmail.com>
*/
/*
|_______________________________________________________
| __________________________________________________ |
| | ilex Framework | |
| | Developed | |
| | By | |
| | GOSSystems | |
| |__________________________________________________| |
|_______________________________________________________|
|
*/
require_once 'vendor/autoload.php';
require_once 'routes/web.php';
$action = $_SERVER['REQUEST_URI'];
Config\Routes\Route::dispatch($action);