Dumplie\Metadata\Infrastructure\Doctrine\Dbal\TableName::tableName PHP Method

tableName() protected method

protected tableName ( string $schemaName, string $typeName ) : string
$schemaName string
$typeName string
return string
    protected function tableName(string $schemaName, string $typeName) : string
    {
        return implode('_', [$this->prefix, $schemaName, $typeName]);
    }
TableName