I defined some constants, so see the example
/**
* @const TEST
*/
define(TEST,'abc');
/**
* @const OTHER
*/
define('OTHER',TEST.'defg');
so in this example the Report say many errors. I added
pseudo shit code ;)
/**
* @const TEST
*/
define(TEST,'abc');
/**
* @const OTHER
*/
define('OTHER',''.TEST.'defg');
The reports say its all ok. So i hope you understand
the Problem. The parser check the next ' not the
next ,
The code looks dirty, i hate it.