/**
 * Create the filename for a resource
 *
 * @param   string  $type   The resource type to create the filename for.
 * @param   array   $parts  An associative array of filename information.
 *
 * @return  string  The filename
 *
 * @since       3.0
 * @deprecated  5.0 See getInstance
 */
protected static function _createFileName($type, $parts = array())
{
    return $type === 'model' ? strtolower($parts['name']) . '.php' : '';
}