This commit is contained in:
2024-07-03 15:15:59 +03:00
parent ec69208f05
commit a482a508e4
15 changed files with 1485 additions and 85 deletions

View File

@ -0,0 +1,18 @@
<?php
namespace app\controllers;
class MainController
{
public function actionIndex(): void
{
echo "<h1>Главная страница</h1>";
}
public function actionExample(): void
{
echo "<h1>Example</h1>";
}
}