This repository has been archived on 2024-03-08. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
website-old/storage/framework/App.php
2023-04-19 15:55:53 +02:00

17 lines
No EOL
259 B
PHP

<?php
namespace framework;
class App
{
public function __construct()
{
Env::parse();
// header("X-Robots-Tag: noindex");
}
public function configureRouting(): void
{
include_once ROOT . '/src/routes.php';
}
}