Tagged Questions
5
votes
1answer
477 views
JetBrains WebIDE: PHP variable type hinting?
Is there a way to hint WebIDE that a variable has some type?
I have to iterate an array of objects, and there's no auto-completion available.
This helps in ZendStudio:
/* @var ClassName $object */
...
3
votes
1answer
450 views
How can I get PhpStorm to go to the right declaration
I have the following snippet of code.
abstract class MrParent {
public function __construct() {
$this->var = 'a';
}
}
class MrChild extends MrParent {
public function hello() {
echo ...
2
votes
1answer
851 views
Using PHPStorm against the Drupal code base produces many false errors
Has anyone managed to use PHPStorm with the Drupal code base? I keep getting many false errors about undefined variables. I've added *.module, *.inc, etc to the list of PHP file types but I still get ...
0
votes
0answers
18 views
PHP Jetbrain server setup
sorry I can not seem to run PHP file within Jetbrain, I think it is the server. I have loaded PHP 5.4 and Apache 6.0 I am having some trouble with Eclipse as well. In Microsoft Webmatrix my php files ...
0
votes
2answers
85 views
Why does it think a class type is a constant, when casting?
PHPStorm, highlights (MyObject) as an undefined constant? and has a highlighted bit afterward asking for an expected semicolon (MyObject);?
$MyObject = ...
-7
votes
1answer
417 views
Buggy PhpStorm code completion [closed]
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 ...