123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <?php
- namespace {NAMESPACE};
- use catcher\base\CatchController;
- class {CLASS} extends CatchController
- {
- public function index()
- {
- return $this->fetch();
- }
- public function create()
- {
- return $this->fetch();
- }
- public function save()
- {}
- public function read()
- {}
- public function edit()
- {
- return $this->fetch();
- }
- public function update()
- {}
- public function delete()
- {}
- }
|