1<?php
2/**
3 * @package     Joomla.Platform
4 * @subpackage  Database
5 *
6 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
7 * @license     GNU General Public License version 2 or later; see LICENSE
8 */
9
10defined('JPATH_PLATFORM') or die;
11
12/**
13 * Joomla Platform Database Interface
14 *
15 * @since  1.7.0
16*/
17interface JDatabaseInterface
18{
19	/**
20	 * Test to see if the connector is available.
21	 *
22	 * @return  boolean  True on success, false otherwise.
23	 *
24	 * @since   1.7.0
25	 */
26	public static function isSupported();
27}
28