[PHP] Using quality tools live

I use Komodo IDE for PHP developing. There is a built-in functionality that performs live lint (e.g. highlights any syntax error, I guess using php -l).
Is there any way to use other quality tools in the same way? E.g., I would like to get highlighted also warnings coming from phpmd, php cs fixer, or similar tools.
TIA

There isn’t a simple setting where you can simply provide another executable, but if you’re willing and able you could add support for it with a little bit of manual labour. This should get you on your way: http://docs.activestate.com/komodo/8.5/linter-reference.html

1 Like

There is also a good blog/tutorial on adding a custom syntax checker to Komodo:
http://komodoide.com/blog/2012-02/diving-deep-komodos-syntax-checker/