Files
raby/public/index.php

11 lines
133 B
PHP
Raw Permalink Normal View History

2020-02-27 19:09:54 -03:00
<?php
2020-04-07 15:37:21 -04:00
session_start();
2020-02-27 19:09:54 -03:00
include_once implode(DIRECTORY_SEPARATOR, [
dirname(__DIR__),
'bootstrap',
'web.php'
]);
$app->run();