31
0
mirror of https://github.com/joomla-extensions/patchtester.git synced 2024-05-31 21:00:47 +00:00
patchtester/administrator/components/com_patchtester/tables/tests.php

28 lines
546 B
PHP
Raw Normal View History

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