yii\helpers\BaseInflector::tableize PHP Method

tableize() public static method

Converts a class name to its table name (pluralized) naming conventions. For example, converts "Person" to "people"
public static tableize ( string $className ) : string
$className string the class name for getting related table_name
return string
    public static function tableize($className)
    {
        return static::pluralize(static::underscore($className));
    }