2011-10-11 09:02:57 -04:00
|
|
|
<?php
|
|
|
|
/**
|
2014-05-03 18:48:08 -05:00
|
|
|
* Patch testing component for the Joomla! CMS
|
2013-07-12 21:26:21 -05:00
|
|
|
*
|
2014-01-02 20:48:28 -06:00
|
|
|
* @copyright Copyright (C) 2011 - 2012 Ian MacLennan, Copyright (C) 2013 - 2014 Open Source Matters, Inc. All rights reserved.
|
2013-07-12 21:26:21 -05:00
|
|
|
* @license GNU General Public License version 2 or later
|
2011-10-11 09:02:57 -04:00
|
|
|
*/
|
|
|
|
|
2014-05-03 18:48:08 -05:00
|
|
|
namespace PatchTester\Table;
|
2011-10-11 09:02:57 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Tests Table class
|
|
|
|
*
|
2014-05-03 18:48:08 -05:00
|
|
|
* @since 2.0
|
2011-10-11 09:02:57 -04:00
|
|
|
*/
|
2014-05-03 18:48:08 -05:00
|
|
|
class TestsTable extends \JTable
|
2011-10-11 09:02:57 -04:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Constructor
|
|
|
|
*
|
2014-05-03 18:48:08 -05:00
|
|
|
* @param \JDatabaseDriver &$db JDatabaseDriver object.
|
2013-07-12 21:26:21 -05:00
|
|
|
*
|
2014-05-03 18:48:08 -05:00
|
|
|
* @since 2.0
|
2011-10-11 09:02:57 -04:00
|
|
|
*/
|
|
|
|
public function __construct(&$db)
|
|
|
|
{
|
2012-06-12 13:42:45 -05:00
|
|
|
parent::__construct('#__patchtester_tests', 'id', $db);
|
2011-10-11 09:02:57 -04:00
|
|
|
}
|
|
|
|
}
|