PHPStorm shows custom Phing task as undefined
When I use the <taskdef> feature to create custom tasks for my Phing build project. Those new tasks appear in PHPStorm as undefined tasks.
<taskdef file="C:/work/zend/cgtag_1/build/tasks/tasks.properties"/>
<timezone/>
<timezone/> executes correctly when the script is run, but in the IDE it's shown as red and undefined. All my build scripts are peppered with red indictors that these custom tasks are errors.
Is there anyway to get PHPStorm to recognize or ignore these tasks?
请先登录再写评论。
Hi there,


Works fine for me when I define them this way (using "name" attribute):
Folder structure (just in case)
thanks for the quick reply.
That's good news. I'll switch to using the named property.
that did the trick.
thanks.