mirror of
https://gitee.com/ulthon/ulthon_admin.git
synced 2026-07-01 23:42:48 +08:00
11 lines
136 B
PHP
11 lines
136 B
PHP
<?php
|
|
namespace app;
|
|
|
|
// 应用请求对象类
|
|
class Request extends \think\Request
|
|
{
|
|
|
|
protected $filter = ['htmlspecialchars'];
|
|
|
|
}
|