15 lines
192 B
Plaintext
Raw Normal View History

2019-12-18 18:54:01 +08:00
<?php
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
}