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?
Asked
Active
Viewed 1,699 times
5

Itay Moav -Malimovka
- 52,579
- 61
- 190
- 278
-
use the @var and @return annotations – Gordon Apr 06 '10 at 14:59
-
@Gordon sure, but where? remember I defined those variable in a file that includes the current one. – Itay Moav -Malimovka Apr 07 '10 at 00:58
3 Answers
4
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!

Cmyker
- 2,318
- 1
- 26
- 29
3
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.

Kevin Schroeder
- 1,296
- 11
- 23
1
foreach($A as $AnInstance)
/*@var MyClass $AnInstance*/
$AnInstance->doSomething();

Itay Moav -Malimovka
- 52,579
- 61
- 190
- 278