Phactory\Inflector::classify PHP Method

classify() public method

Converts "people" to "Person"
See also: tableize
public classify ( string $table_name ) : string
$table_name string Table name for getting related ClassName.
return string SingularClassName
    function classify($table_name)
    {
        return Inflector::camelize(Inflector::singularize($table_name));
    }