This fails in my case
define('DEFAULT_ROLES', array('guy', 'development team'));
Apparently, the constants cannot hold arrays. What is the workaround for this?
define('DEFAULT_ROLES', 'guy|development team');
//...
$default = explode('|', DEFAULT_ROLES);
This is kind of unnecessarily complicated to me.