Baum\Generators\Generator::tableize PHP Method

tableize() protected method

Inflect to table name.
protected tableize ( string $input ) : string
$input string
return string
    protected function tableize($input)
    {
        return snake_case(str_plural($input));
    }