25 lines
804 B
Plaintext
25 lines
804 B
Plaintext
<?php
|
||
// +----------------------------------------------------------------------
|
||
// | 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 ]
|
||
// +----------------------------------------------------------------------
|
||
|
||
namespace {NAMESPACE};
|
||
|
||
use catcher\base\CatchRequest;
|
||
|
||
class {CLASS}Request extends CatchRequest
|
||
{
|
||
public function rule()
|
||
{
|
||
return [
|
||
// rule
|
||
];
|
||
}
|
||
}
|