forked from VeroEMtz/420DW3_07278_Project
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
26 lines (20 loc) · 650 Bytes
/
Copy pathindex.php
File metadata and controls
26 lines (20 loc) · 650 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
declare(strict_types=1);
/*
* 420DW3_07278_Project index.php
*
* @author Viraj Patel
* @since 2024-04-11
*/
require_once "private/helpers/init.php";
use Teacher\Examples\ApplicationExample;
use Viraj\Project\Application;
Debug::$DEBUG_MODE = false;
// TODO @Students You should create your own 'application'-style class and use it here
// You can base yourself on my own 'Teacher\Examples\ApplicationExample' class;
// in it you can use my 'Teacher\GivenCode\Services\InternalRouter' class wich is given code.
//$application = new ApplicationExample();
//$application->run();
//
$application = new Application();
$application->run();