upgrade/application/index/controller/Index.php

20 lines
286 B
PHP
Raw Permalink Normal View History

2022-09-23 11:51:45 +00:00
<?php
namespace app\index\controller;
use app\common\controller\Frontend;
class Index extends Frontend
{
protected $noNeedLogin = '*';
protected $noNeedRight = '*';
protected $layout = '';
public function index()
{
return $this->view->fetch();
}
}