toSnakeCase() public static method

For Example HelloWorld to hello_world
public static toSnakeCase ( string $string ) : string
$string string CamelCase String to Convert
return string SnakeCase string
 public function testToSnakeCase()
 {
     $string = 'HelloWorld';
     $this->assertEquals('hello_world', Util::toSnakeCase($string));
     $string = 'HowAreYouToday';
     $this->assertEquals('how_are_you_today', Util::toSnakeCase($string));
 }