We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6fe6c75 commit 63902d6Copy full SHA for 63902d6
public/index.php
@@ -0,0 +1,13 @@
1
+<?php
2
+
3
+use archytech99\Core\Controller;
4
5
+if ( !session_id() ) {
6
+ session_start();
7
+}
8
9
+require_once __DIR__ . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . 'vendor/autoload.php';
10
+require_once __DIR__ . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . 'app/helper.php';
11
+require_once __DIR__ . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . 'app/config.php';
12
13
+new Controller();
0 commit comments