function Get-ValidPackageDatabaseConfigFilenames { <# .SYNOPSIS Get the list of valid database config file names The idea is that if we add more support for additional names, we can add them to this list for iteration. #> [CmdletBinding()] [OutputType([string[]])] param ( ) return @( 'DatabaseConfig.ps1' ) }