17 lines
261 B
PHP
Executable File
17 lines
261 B
PHP
Executable File
<?php
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: ORICO
|
|
* Date: 2018-09-21
|
|
* Time: 17:36
|
|
*/
|
|
|
|
namespace app\index\controller;
|
|
|
|
|
|
class Group extends BaseController
|
|
{
|
|
public function index(){
|
|
return $this->view->fetch();
|
|
}
|
|
} |