Adding ingore of yiilite does solves doubled list positions. But how to solve problem with classes like UserIdentity?
I have an example Yii project open in Yii. Added path to framework in project options (don't use Global Include Path) and ignore to yiilite in Netbeans setup. Now, I write "UserIdentity::" in editor and code completion comes out with three copies per each element in this class. For example I have three "ERROR_NONE" contstants etc.
The problem is because I have whole framework code inside my project code (/protected/framework). I know that this could be a security issue, but this is not the key of this discussion.
Because I've included framework code inside my project code I have actually have three UserIdentity classes. One is in-app autogenerated:
- protected/components/UserIdentity.php
- protected/framework/cli/views/webapp/protected/components/UserIdentity.php
- protected/framework/gii/components/UserIdentity.php
Is there any way to solve problems like this or do I have to learn living with this?

Help














