If you have a parameter with a default value of a constant (e.g. self::WHATEVER), we currently do not evaluate the value of self::WHATEVER, we just return self::WHATEVER as a string. This is incorrect, we need to (wherever possible) determine the actual value.
If you have a parameter with a default value of a constant (e.g.
self::WHATEVER), we currently do not evaluate the value ofself::WHATEVER, we just returnself::WHATEVERas a string. This is incorrect, we need to (wherever possible) determine the actual value.