33
0
mirror of https://github.com/joomla-extensions/patchtester.git synced 2024-11-10 15:21:01 +00:00
patchtester/administrator/components/com_patchtester/PatchTester/Table/TestsTable.php

30 lines
580 B
PHP
Raw Normal View History

2011-10-11 13:02:57 +00:00
<?php
/**
* Patch testing component for the Joomla! CMS
2013-07-13 02:26:21 +00:00
*
2015-02-22 21:29:43 +00:00
* @copyright Copyright (C) 2011 - 2012 Ian MacLennan, Copyright (C) 2013 - 2015 Open Source Matters, Inc. All rights reserved.
2013-07-13 02:26:21 +00:00
* @license GNU General Public License version 2 or later
2011-10-11 13:02:57 +00:00
*/
namespace PatchTester\Table;
2011-10-11 13:02:57 +00:00
/**
* Tests Table class
*
* @since 2.0
2011-10-11 13:02:57 +00:00
*/
class TestsTable extends \JTable
2011-10-11 13:02:57 +00:00
{
/**
* Constructor
*
* @param \JDatabaseDriver &$db JDatabaseDriver object.
2013-07-13 02:26:21 +00:00
*
* @since 2.0
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
}
}