...
Codeblock | ||||||
---|---|---|---|---|---|---|
| ||||||
namespace brandbox\component\example { use brandbox\component\http; class engine extends plugin\lib\engineAbstract { /** * @param int $max * @return array */ public function index($max) { return $this ->staticAppController(ui\lib\request\index::class) ->request($max) ; } /** * @param int $max * @return http\respondAbstract */ public function save($max) { return $this ->staticAppController(ui\lib\execute\save::class) ->execute($max) ; } } } |
...