Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm seriously evaluating PhpStorm (we are using PDT for now). Unless I'm missing something, code completion looks rather dump and unintelligent to me, to the the point of being useless. I reviewed the official presentations and feature highlights and it appears PhpStorm should be doing a good job here yet all I see is irrelevant suggestions, missing classes from suggestion lists and buggy inferences.

When I press Ctrl+N, classes are there but when I try to instantiate from a class, some classes appear in the suggestions list and some don't with no apparent reason.

When I invoke auto complete on an object variable ($a=new SomeClass() ), there are language constructs (i.e. if, endif, while), superglobals ($_GET, $_PUT etc) in the list and when I press Enter, they are actually inserted ! (i.e. $a->$_SERVER['DOCUMENT_ROOT'] )

I'm using the final evaluation version downloaded from JetBrains, My test project is a fork of FengOffice and I'm having the common LAMP stack on Ubuntu 11.04 (php 5.3.6). Nothing special really.

Can someone please confirm this or point me to the right direction ?

share|improve this question
4  
it looks like that you're on a heavy search for an IDE while only complaining like in Why PDT is so big , slow and somewhat buggy? - maybe you should get information on your own first more specifically instead of throwing anything you run over into this site? – hakre Jul 27 '11 at 14:22
1  
@ashy_32bit: Read the FAQ. It explicitly states that questions like that are not constructive: "avoid asking subjective questions where... there is no actual problem to be solved: I’m curious if other people feel like I do; it is a rant disguised as a question: ______ sucks, am I right?". – netcoder Aug 1 '11 at 2:49
2  
Apparently, it was just me. Dunno exactly what I did but after few opening, closing and reopening, issues are resolved. Perhaps I didn't let the IDE to complete it's indexing the first time I created the project. – ashy_32bit Aug 3 '11 at 5:30
7  
You're not really asking a question here. This post appears to be a subjective rant, and your answer does little more than confirm that. I have no idea why this was reopened. – Bill the Lizard Aug 3 '11 at 16:17
1  
show 6 more comments

closed as not a real question by Bill the Lizard Aug 3 '11 at 16:15

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

up vote 3 down vote accepted

To my knowledge all IDEs parse the project source content and create an "Index" which they rely on extensively for various functions like Code Completion, refactorings, smart searching and the like (you got the idea). If this index is corrupt for any reason, some features appear as unintelligent and dumb. In such cases a full re-indexing would remedy the problem. In PDT "Building Workspace" or "Clean" would do it. PhpStorm, however, does it automatically . Apparently closing and reopening projects would somehow trigger the re-index process and in my case, that solved the problem. Hope this saves someone time and effort.

share|improve this answer

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