Phactory\Inflector::tableize PHP Method

tableize() public method

Converts "Person" to "people"
See also: classify
public tableize ( string $class_name ) : string
$class_name string Class name for getting related table_name.
return string plural_table_name
    function tableize($class_name)
    {
        return Inflector::pluralize(Inflector::underscore($class_name));
    }