So, in PHPDoc one can specify @var above the member variable declaration to hint at its type. Then an IDE, for ex. PHPEd, will know what type of object it's working with and will be able to provide a code insight for that variable.

<?php
  class Test
  {
    /** @var SomeObj */
    private $someObjInstance;
  }
?>

This works great until I need to do the same to an array of objects to be able to get a proper hint when I iterate through those objects later on.

So, is there a way to declare a PHPDoc tag to specify that the member variable is an array of SomeObjs? @var array is not enough, and @var array(SomeObj) doesn't seem to be valid, for example.

link|improve this question

80% accept rate
2  
Your question is not the proper place to market your homepage, twittr or whatever ... – mark Apr 22 '09 at 20:27
There's some reference in this Netbeans 6.8 dev blog that the IDE is now smart enough to deduce the type of array members: blogs.sun.com/netbeansphp/entry/php_templates_improved – therefromhere Oct 17 '09 at 9:16
feedback

5 Answers

up vote 58 down vote accepted

The best you can do is say,

foreach ($Objs as $Obj)
{
    /* @var $Obj Test */
    // You should be able to get hinting after the preceding line if you type $Obj->
}

I do that a lot in Zend Studio. Don't know about other editors, but it ought to work.

link|improve this answer
2  
This makes sense but it didn't work for PHPEd 5.2. The only thing I was able to come up with that worked is foreach ($Objs as /** @var Test */$Obj), which is horribly ugly. :( – Artem Russakovskii Apr 22 '09 at 19:43
2  
This works in NetBeans 6.7 (I think it's bugged, since you get a ? for the type when you hit ctrl-space, but it is able autocomplete the object's members/methods). – therefromhere Sep 30 '09 at 11:31
2  
Works a treat in NetBeans 6.8+. $Obj-> then ctrl-space brings up the expect list of properties and methods. – Jon Cram May 7 '10 at 19:58
Thank you very much! This worked for me with eclipse 3.6.1. – dcompiled Jan 18 '11 at 21:14
5  
This also works in Jetbrains PHPStorm 2.x – Hyperactive Jun 9 '11 at 13:20
show 2 more comments
feedback

In PhpStorm IDE from JetBrains, you can use /** @var SomeObj[] */, e.g.:

/**
 * @return SomeObj[]
 */
function getSomeObjects() {...}
link|improve this answer
16  
ah, PhpStorm is so great :) – mgroves Aug 22 '10 at 17:23
1  
I just downloaded and have been using phpstorm for the past week. Beats the heck out of Aptana (which is great for being free). This is exactly what I was looking for. Actually, it is the same way you'd do it for JavaScript, I should have guessed – Juan Mendes Oct 7 '10 at 19:53
1  
Thanks man! This is exactly what I was looking for. PHPStorm is fantastic. – ErikSchierboom Jan 31 '11 at 8:04
This doesn't work in Netbeans, I am disappointed. Jetbrains make some very nice tools. – Keyo Aug 30 '11 at 0:00
1  
@fishbone @Keyo this works in Netbeans now (in 7.1 nightly build at least, maybe earlier), though it seems you need to use a temporary variable (a bug?). Hinting for foreach(getSomeObjects() as $obj) doesn't work, but it does for $objs = getSomeObjects(); foreach($objs as $obj) – therefromhere Jan 20 at 22:15
show 6 more comments
feedback
<?php foreach($this->models as /** @var Model_Object_WheelModel */ $model): ?>
    <?php
    // Type hinting now works:
    $model->getImage();
    ?>
<?php endforeach; ?>
link|improve this answer
3  
which IDEs support this? – philfreo Jun 27 '10 at 22:00
feedback

I've found something which is working, it can save lives !

private $userList = array();
$userList = User::fetchAll(); // now $userList is an array of User objects
foreach ($userList as $user) {
   $user instanceof User;
   echo $user->getName();
}
link|improve this answer
4  
only problem is that introduces additional code to be executed, which is purely used by your IDE only. It's much better to define type hinting within the comments instead. – Ben Rowe Jan 28 '10 at 6:18
1  
Wow this works great. You would end up with additional code but it seems to be harmless. I'm going to start doing: $x instanceof Y; // typehint – igor Sep 5 '10 at 23:46
feedback

The problem is that @var can just denote a single type - Not contain a complex formula. If you had a syntax for "array of Foo", why stop there and not add a syntax for "array of array, that contains 2 Foo's and three Bar's"? I understand that a list of elements is perhaps more generic than that, but it's a slippery slope.

Personally, I have some times used @var Foo[] to signify "an array of Foo's", but it's not supported by IDE's.

link|improve this answer
3  
One of the things that I love about C/C++ is that it actually keeps track of types down to this level. That would be a very pleasant slope to slip down. – Brilliand May 2 '11 at 20:58
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.