- Issue created by @klausi
Automatically closed - issue fixed for 2 weeks with no activity.
Enums and Traits should use UpperCamel naming, this is currently not checked in Coder
The checking is done by the Drupal.NamingConventions.ValidClassName sniff.
Write bad enum or trait names.
Test examples:
class CorrectClassName {}
class CorrectClassWithAReallyLongName {}
class INCORRECT_CLASS_NAME {}
class INCORRECTCLASSNAME {}
class incorrectLowercaseClassName {}
interface CorrectInterfaceName {}
interface CorrectInterfaceWithAReallyLongName {}
interface INCORRECT_INTERFACE_NAME {}
interface INCORRECTINTERFACENAME {}
interface incorrectLowercaseInterfaceName {}
trait CorrectTraitName {}
trait CorrectTraitWithAReallyLongName {}
trait INCORRECT_TRAIT_NAME {}
trait INCORRECTTRAITNAME {}
trait incorrectLowercaseTraitName {}
enum CorrectEnumName {}
enum CorrectEnumWithAReallyLongName {}
enum INCORRECT_ENUM_NAME {}
enum INCORRECTENUMNAME {}
enum incorrectLowercaseEnumName {}
pull request
None
Active
8.3
Coder Sniffer
Automatically closed - issue fixed for 2 weeks with no activity.