An open API service indexing awesome lists of open source software.

https://github.com/mfn/phpstorm-phing-custom-namespace-task

Example report for https://youtrack.jetbrains.com/issue/WI-25043
https://github.com/mfn/phpstorm-phing-custom-namespace-task

Last synced: 2 months ago
JSON representation

Example report for https://youtrack.jetbrains.com/issue/WI-25043

Awesome Lists containing this project

README

        

PhpStorm doesn't recognize the custom namespace task

If you open the `build.xml` it will show:
- *PHP file 'Some\Space\SomeTask' not found*
- the 'mytask' tag is an unresolved symbol

See this screenshot:
![error](phpstorm_phing_error.png)

However, everything works fine for phing itself:
- `composer.phar install`
- `vendor/bin/phing`

Result in:
```
$ vendor/bin/phing
Buildfile: ..../build.xml

test > test:

Hello from namespaced task
```