我使用Netbeans进行自定义PHP项目,代码完成无法正常运行。任何帮助都会很精彩。这是我的情景。
View类的摘要。
use Smarty;
Class View extends Smarty
{
public function render($template)
{
$this->display('$template);
}
}
Controller类的摘要。
use View;
Class Controller
{
/* @var $view View */
public $view;
public function __construct()
{
$this->view = new View;
}
$this->view-> // Netbeans show all methods from View and Smarty Class.
}
在我的个人控制器中。
use Controller;
Class IndexController extends Controller
{
$this->view-> // Does NOT show anything either from View or Smarty Class.
}
非常感谢你的帮助。