How do I access values of a static array in PHP?
$anyVar = self::MY_ARRAY['identifier']
throws 'unexpected [ after MY_ARRAY' at me.
You're missing your dollar sign
$anyVar = self::$MY_ARRAY['identifier'];
FYI, naming variables in uppercase should be reserved to constants by convention.