1 <?php
2 /**
3 * @package FrameworkOnFramework
4 * @subpackage database
5 * @copyright Copyright (C) 2010-2016 Nicholas K. Dionysopoulos / Akeeba Ltd. All rights reserved.
6 * @license GNU General Public License version 2 or later; see LICENSE.txt
7 *
8 * This file is adapted from the Joomla! Platform. It is used to iterate a database cursor returning FOFTable objects
9 * instead of plain stdClass objects
10 */
11
12 // Protect from unauthorized access
13 defined('FOF_INCLUDED') or die;
14
15 /**
16 * Query Building Class.
17 *
18 * @since 11.1
19 * @deprecated Will be removed when the minimum supported PHP version no longer includes the deprecated PHP `mysql` extension
20 */
21 class FOFDatabaseQueryMysql extends FOFDatabaseQueryMysqli
22 {
23 }
24