This commit is contained in:
2020-04-10 02:21:25 -04:00
parent f69cb57c36
commit 692c001cd5
39 changed files with 887 additions and 0 deletions

View File

@ -0,0 +1,8 @@
<?php
$filename = implode(DIRECTORY_SEPARATOR, [
__DIR__,
$__environment . '.php'
]);
if (file_exists($filename)) {
include_once $filename;
}

4
resources/routes/web.php Normal file
View File

@ -0,0 +1,4 @@
<?php
use ProVM\TotalSport\Common\Controller\Web\Home;
$app->get('/', Home::class);