- Set up project directories including app structure. - Add IntelliJ IDEA project files and configurations. - Implement basic PHP router for request handling. - Provide reference files for features, IPs, and documentation. - Include license and copyright files.
10 lines
105 B
PHP
10 lines
105 B
PHP
<?php
|
|
|
|
class Controller {
|
|
|
|
public function index(): void {
|
|
require_once '../views/home.php';
|
|
}
|
|
}
|
|
|
|
?>
|