I am runnig PHP CLI application.
If I set a breakpoint, xdebug stops on it. if I write xdebug_break(); it stops as well.
Can I make it stop if application throws an exception?
My ini file:
php -i | grep php.ini Loaded Configuration File => /etc/php5/cli/php.ini
xdebug.remote_enable=1
xdebug.remote_handler=dbgp
xdebug.remote_mode=req
xdebug.remote_host=127.0.0.1
xdebug.remote_port=9000