我有一个插件,我希望扩展Request
类(Cake\Network\Request
),以添加可以由我的插件的控制器使用的新方法和属性。
怎么办? 感谢。
答案 0 :(得分:1)
创建扩展请求类,只需将其实例传递给应用webroot/index.php
前端控制器中的调度程序:
<强> https://github.com/cakephp/app/blob/3.0.0/webroot/index.php#L35 强>
// ....
use App\Network\MyCustomRequest;
$dispatcher = DispatcherFactory::create();
$dispatcher->dispatch(
MyCustomRequest::createFromGlobals(), // there it goes
new Response()
);