mirror of
https://gitee.com/apiadmin/ApiAdmin.git
synced 2025-04-06 03:58:00 +08:00
20 lines
330 B
PHP
20 lines
330 B
PHP
<?php
|
|
/**
|
|
* @since 2016-11-07
|
|
* @author zhaoxiang <zhaoxiang051405@gmail.com>
|
|
*/
|
|
|
|
namespace app\index\controller;
|
|
|
|
|
|
class Help extends Base {
|
|
public function index(){
|
|
$this->display();
|
|
}
|
|
public function pro1(){
|
|
$this->display();
|
|
}
|
|
public function pro2(){
|
|
$this->display();
|
|
}
|
|
} |