Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

In Zend studio, how to tell the ide the type of a variable, so I have auto completion?

In php we use includes. So variables defined in one file and then their scope spans included files too. Zend studio has no idea how to get the type of the variable I am using inside an included file, this is very annoying when the variable type is a big class.
Is there a way to hint the ide about variable types? in included files?

like image 462
Itay Moav -Malimovka Avatar asked Apr 06 '10 13:04

Itay Moav -Malimovka


2 Answers

Here is a manual entry of the very old Zend Studio 5.

/* @var $router \Core\Router */
$router = Registry::get("router");
$router->route();

This feature is also works in new Zend Studio including version 10!

like image 177
Cmyker Avatar answered Nov 13 '22 20:11

Cmyker


I have an article on some code completion tips Zend Studio and PDT Code Completion Tips that might help. However, it is a good idea to try and limit the variables that required from other files. It can quite easily make for difficult to maintain code.

like image 3
Kevin Schroeder Avatar answered Nov 13 '22 18:11

Kevin Schroeder