Rename function "" to match the regular expression ^[a-z][a-z0-9_]*$.
This error is not actually correct, the rules in the coding standards of drupal are that we follow the snake_case only in .module files or in drupal 7 context. In modern drupal (8+), in classes it should be camelCase instead.
Methods and class properties should use lowerCamel naming. In Drupal 8, properties of configuration entities are exempt of these conventions. Those properties are allowed to use underscores.