Files
portal/setup/router.php

9 lines
185 B
PHP
Raw Normal View History

2020-11-20 16:21:42 -03:00
<?php
$filename = implode(DIRECTORY_SEPARATOR, [
$app->getContainer()->get('folders')->routes,
$__environment . '.php'
]);
if (file_exists($filename)) {
include_once $filename;
}