TP3.2.2 Common模块下的Controller 不能被继承么

浏览:2985 发布日期:2014/04/22 分类:求助交流 关键字: TP3.2.2,Common
TP3.2.2 中
/Application/Common模块中定义了Controller 即
/Application/Common/Controller/CommonController

在/Application/Home/Controller/中的IndexController中不能继承CommonController么<?php
namespace Home\Controller;
use Common\CommonController;

class IndexController extends CommonController {
    public function index(){
        $this->display();
        
    }
}
最佳答案
评论( 相关
后面还有条评论,点击查看>>