Adds support for anonymous classes.
There is currently a proplem with PHP < 7: Since anonymous classes where added in PHP 7, running these Sniffs now generates a Notice due to the missing constant T_ANON_CLASS.
I'm unsure how to handle this: Ignore it, check for PHP-Versions < 7 or require PHP > 7.
Adds support for anonymous classes. There is currently a proplem with PHP < 7: Since anonymous classes where added in PHP 7, running these Sniffs now generates a
Notice
due to the missing constantT_ANON_CLASS
.I'm unsure how to handle this: Ignore it, check for PHP-Versions < 7 or require PHP > 7.