25 lines
724 B
PHP
25 lines
724 B
PHP
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | SentCMS [ WE CAN DO IT JUST THINK IT ]
|
|
// +----------------------------------------------------------------------
|
|
// | Copyright (c) 2013 http://www.tensent.cn All rights reserved.
|
|
// +----------------------------------------------------------------------
|
|
// | Author: molong <molong@tensent.cn> <http://www.tensent.cn>
|
|
// +----------------------------------------------------------------------
|
|
namespace App\Http\Controllers\System;
|
|
|
|
use App\Http\Controllers\Base;
|
|
|
|
class Setting extends Base{
|
|
|
|
/**
|
|
* @title 设置配置表单
|
|
*
|
|
* @return void
|
|
*/
|
|
public function index(){
|
|
|
|
return $this->data;
|
|
}
|
|
}
|