Trying phpStorm for the 1st time, problems with Zend Framework auto complete
Hi!
I'm trying phpStorm for the 1st time and I encounter some problems with Zend Framework auto completion.
I expose the problem:
I have the classical Zend Framework structure:
/application
/application/configs
/application/models
/application/modules/admin/controllers
etc...
example:
I have a Model calles users
* /application/models/users.php
class Admin_UsersController extends Zend_Controller_Action {
public function init(){ }
public function showUserName($idUser) { }
}
In one controller I get an instance of user:
/application/modules/admin/controllers/usersController.php
class Admin_UsuarisController extends Zend_Controller_Action {
public function init(){
$this->users = new Model_Users();
}
}
If then I type "$this->users->" and I ask for autocompletion, it's supposed that "showUserName" should be displayed but I get "No suggestions"
What should be done to get this functionnality working?
Kind regards.
请先登录再写评论。
This is not yet implemented.