12 lines
186 B
PHP
Executable File
12 lines
186 B
PHP
Executable File
<?php
|
|
|
|
namespace Core;
|
|
|
|
class Controller
|
|
{
|
|
public function render($view, $params = [])
|
|
{
|
|
return Application::$app->router->renderView($view, $params);
|
|
}
|
|
}
|