Current situation: I have dependencies in my project that I solve by using dependency injection. I want to take the next logic step by using a dependency injection container (DIC) to ease the management of my dependencies and to lazy-load classes.

I looked at Bucket, Pimple, and sfServiceContainer, ran some test and really appreciate how DIC’s work. I’d probably go for Pimple because of its simplicity and raw power. If I didn’t have this problem:

Due to the abstraction that DIC’s offer, the IDE I’m using (PHPStorm) no longer understands what’s going on in my code. It doesn’t understand that $container['mailer'] or $sc->mailer is holding a class object. I also tried Netbeans IDE: same problem.

This is really a problem for me because my IDE becomes useless. I don’t want to program without code hints, autocompletion and refactoring tools when dealing with classes. And I don’t want my IDE to find all kinds of false positives when validating code.

So my question is: Has anyone dealt with this problem and found a solution?

link|improve this question

75% accept rate
4  
you can try via phpdocumentor tags /** @var $inst My_Object **/ $inst = $sc->mailer; – Rufinus Jun 18 '11 at 11:47
feedback

4 Answers

up vote 4 down vote accepted

You can define class of variable 'manually':

/** @var YourClassType $mailer */
$mailer = $container['mailer'];

In PhpStorm (and by standards) use two asterisks and write DataType before name of variable.
You can write DataType without name of variable (but not name without DataType).

link|improve this answer
The link you posted is about class variables. – hakre Jun 18 '11 at 12:01
@hakre: It applies to normal variables, too ;) – NikiC Jun 18 '11 at 12:01
1  
@nikic: How do you read this title: @var - Document the data type of a class variable? Would match the scope of PHPDoc fairly well, but whatever, no need to be pedantic. – hakre Jun 18 '11 at 12:03
@hakre, you are correct, and all the IDEs are doing it wrong. I've wondered about that, too, but as you say: pedantic. – Phoenix Sep 18 '11 at 17:52
netbeans does not support this example (thought it should) but does take types from phpdoc tags. – thevikas Dec 16 '11 at 7:19
feedback

While you can certainly tell your IDE the type of the object pulled out of your container every time you access it, it's better to do it once. Both of the following solutions involve subclassing the container. I just started using Pimple which recommends doing this anyway.

For containers that use instance members accessed with -> you can tell your IDE what type they hold. This is great because it doesn't involve any additional parsing when the code is run--only the IDE is bothered by it.

/**
 * My container. It contains things. Duh.
 *
 * @property MyService $service
 * @property MyDao $dao
 */
class MyContainer extends Container { }

For Pimple and other containers that act as arrays you can create accessor functions for the top-level objects you'll need. While it means more parsing when the container is created, it should be done once and kept in APC. I vastly prefer a method over array access anyway since it places the easy-to-forget array key inside an auto-completed method.

class MyContainer extends Pimple
{
    /**
     * @return MyService
     */
    public function getMyService() {
        return $this['service'];
    }
}

BTW, for type-hinting inline variables with @var in NetBeans you need to use /* with one asterisk. This is not a doc-block comment and doesn't work with /** or //. Also, the name comes before the type.

public function foo() {
    /* @var $service MyService */
    $service = $container['service'];
    ...
}
link|improve this answer
feedback

This is not the IDE's fault because, understandably, it has not idea where these resources are being injected from.

I had the same problems when working with frameworks when you had to refer to things as $this->Class and so forth.

Didn't really find an easy way to fix it, finally solved it in a hackish method by explicitly declaring them in my code like so.

if (false) {
   $this->Class = new Class();
}

I'd usually put this in my constructor for the IDE to pickup. you might want to wrap this within specific comments so you can automatically strip them out later.

link|improve this answer
feedback

As the IDE's do not exectue the code, they do not know and need some help form you. I know this works for Eclipse and other IDEs as well: Hint the variable's type.

PDT Example

/* @var $mailer MailerInterface */
$mailer = $sc->mailer

Code complete starts to work again on $mailer.

For PDT it's important that:

  1. The comment starts with one * only.
  2. First the variable name, than the hint.

Netbeans and Other IDEs

As it was subject to a lot of discussion, it can differ between IDEs. However most IDEs support variable hinting for inline code variables that way. So depending on the IDE this might be written differently but similar:

   /** @var $mailer MailerInterface */

This was it how it was introduced in NetBeans and it didn't work for single asterisks until recently.

PHPDoc compatibility

PHPDoc parsers can have a problem if you mimic the class var doc-comment for inline code as so:

   /** @var MailerInterface $mailer  */

That documentation is normally used for class variables (@var - Document the data type of a class variable). PHPDoc is then missing the definition of the class variable after the comment which involves a burden for QA.

However some IDEs will offer code completition for simple variables as well when written in PHPDoc clas-variable style. I do not know if that has side-effects for the code-completition of the current class then as a new member might get introduced that actually does not exists.

link|improve this answer
please add another asterix in order to make it a valid phpdoc comment. – NikiC Jun 18 '11 at 11:48
1  
Second example shows wrong usage of phpdoc-comment. Type should be BEFORE variable only. It works just to support old code. manual.phpdoc.org/HTMLframesConverter/default/phpDocumentor/… – OZ_ Jun 18 '11 at 11:52
@nikic: I dare to not do so as this is function body code not a phpdoc comment. – hakre Jun 18 '11 at 11:55
@hakre so PDT is a piece of crap. Because standard of phpdoc tells to write datatype first (see link in previous comment). – OZ_ Jun 18 '11 at 11:56
@OZ_: I beg your pardon, but it looks like that you have misread the phpdoc specs you linked which is about class variables. This is not a class variable but code in the function body. PDT naturally supports PHPDoc comments for class variables according to the specs you've linked. – hakre Jun 18 '11 at 11:58
show 10 more comments
feedback

Your Answer

 
or
required, but never shown

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