25 lines
804 B
Plaintext
Raw Normal View History

2019-12-18 18:54:01 +08:00
<?php
2020-09-11 18:19:06 +08:00
// +----------------------------------------------------------------------
// | CatchAdmin [Just Like ]
// +----------------------------------------------------------------------
// | Copyright (c) 2017~{$year} http://catchadmin.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( https://github.com/yanwenwu/catch-admin/blob/master/LICENSE.txt )
// +----------------------------------------------------------------------
// | Author: JaguarJack [ njphper@gmail.com ]
// +----------------------------------------------------------------------
2019-12-18 18:54:01 +08:00
namespace {NAMESPACE};
2019-12-19 07:19:15 +08:00
use catcher\base\CatchRequest;
2019-12-18 18:54:01 +08:00
2019-12-19 07:19:15 +08:00
class {CLASS}Request extends CatchRequest
2019-12-18 18:54:01 +08:00
{
2019-12-19 07:19:15 +08:00
public function rule()
{
return [
// rule
];
}
2019-12-18 18:54:01 +08:00
}