mirror of
https://gitee.com/fastadminnet/framework.git
synced 2026-07-05 22:52:49 +08:00
session类和input类调整
注释调整
This commit is contained in:
21
library/think/model/extend_model.php
Normal file
21
library/think/model/extend_model.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
// +----------------------------------------------------------------------
|
||||
// | ThinkPHP [ WE CAN DO IT JUST THINK ]
|
||||
// +----------------------------------------------------------------------
|
||||
// | Copyright (c) 2006~2015 http://thinkphp.cn All rights reserved.
|
||||
// +----------------------------------------------------------------------
|
||||
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
|
||||
// +----------------------------------------------------------------------
|
||||
// | Author: liu21st <liu21st@gmail.com>
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace think\model;
|
||||
use traits\think\model\extend,
|
||||
traits\think\model\query;
|
||||
|
||||
T('think/model/extend');
|
||||
T('think/model/query');
|
||||
|
||||
class ExtendModel extends \think\model {
|
||||
use extend, query;
|
||||
}
|
||||
Reference in New Issue
Block a user