-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
29 lines (26 loc) · 1.07 KB
/
index.php
File metadata and controls
29 lines (26 loc) · 1.07 KB
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
27
28
29
<?php
/**
* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
* - _____ ____ ______ ___ ______ _____ ____ ______ ______ ___ -
* - / __ \/ __ \/ __ \/ /_ \___ \/ __ \/ __ \/ __ \\___ \ / / -
* - / /_/ / ___/ / / / __// _ / /_/ / /_/ / / / / _ // / -
* - / .__/\____/\_/ /__/\____/\___._/\__ /\____/\_/ /__/\___._// / -
* - / / _________________________ ____/ / / /____ -
* - /__/ \________________________/ /______/ ._______/ -
* - -
* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
*/
/**
* Almira Trans
*/
namespace PentagonalProject\AlmiraTrans {
error_reporting(~0);
date_default_timezone_set('GMT+7');
if (function_exists('ini_set')) {
ini_set('display_errors', 1);
ini_set('log_errors', 0);
}
require_once __DIR__ . '/vendor/autoload.php';
$app = new Application();
$app->run();
}