35 lines
466 B
Plaintext
35 lines
466 B
Plaintext
<?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()
|
|
{}
|
|
|
|
} |