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
- Host: GitHub
- URL: https://github.com/mfn/phpstorm-phing-custom-namespace-task
- Owner: mfn
- Created: 2014-09-27T11:48:44.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-09-27T11:54:29.000Z (over 10 years ago)
- Last Synced: 2025-01-23T22:25:20.079Z (4 months ago)
- Language: PHP
- Homepage:
- Size: 188 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 symbolSee this screenshot:
However, everything works fine for phing itself:
- `composer.phar install`
- `vendor/bin/phing`Result in:
```
$ vendor/bin/phing
Buildfile: ..../build.xmltest > test:
Hello from namespaced task
```