Initial commit of LightMVC framework files.

This commit is contained in:
2026-07-28 22:57:00 +05:30
parent 6beffc9fe9
commit f8411accb4
17 changed files with 424 additions and 3 deletions
+11
View File
@@ -0,0 +1,11 @@
<?php
namespace Core;
class Controller
{
public function render($view, $params = [])
{
return Application::$app->router->renderView($view, $params);
}
}