mirror of
https://gitee.com/likeadmin/likeadmin_php_saas.git
synced 2026-09-06 06:48:00 +08:00
10 lines
148 B
PHP
10 lines
148 B
PHP
<?php
|
|
namespace app;
|
|
|
|
// 应用请求对象类
|
|
class Request extends \think\Request
|
|
{
|
|
// 全局过滤规则
|
|
protected $filter = ['trim'];
|
|
}
|