--TEST-- check for Yaf_Dispatcher::throwException --SKIPIF-- --INI-- yaf.use_spl_autoload=0 yaf.lowcase_path=0 yaf.environ="product" yaf.use_namespace=0 --FILE-- throwException(true); var_dump(Yaf_Dispatcher::getInstance()->throwException()); Yaf_Dispatcher::getInstance()->throwException(false); var_dump(Yaf_Dispatcher::getInstance()->throwException()); ?> --EXPECTF-- bool(true) bool(false)