TOP-framework/application/home/controller/Index.php

26 lines
306 B
PHP

<?php
namespace app\home\controller;
use top\library\cache\Redis;
class Index
{
public function index()
{
return [];
}
public function hello()
{
return 'hello';
}
public function testPage()
{
// return $this->view();
return [];
}
}