31
0
mirror of https://github.com/joomla-extensions/patchtester.git synced 2024-06-02 05:30:48 +00:00
patchtester/administrator/components/com_patchtester/tables/tests.php
2011-10-11 10:27:52 -04:00

28 lines
507 B
PHP

<?php
/**
* @package PatchTester
* @copyright Copyright (C) 2011 Ian MacLennan, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
// No direct access
defined('_JEXEC') or die;
/**
* Tests Table class
*
* @package PatchTester
*/
class PatchtesterTableTests extends JTable
{
/**
* Constructor
*
* @param JDatabase A database connector object
*/
public function __construct(&$db)
{
parent::__construct('#__tests', 'id', $db);
}
}