31
0
mirror of https://github.com/joomla-extensions/patchtester.git synced 2024-09-20 08:49:02 +00:00
patchtester/administrator/components/com_patchtester/tables/tests.php

28 lines
507 B
PHP
Raw Normal View History

2011-10-11 13:02:57 +00:00
<?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);
}
}