2014-05-01 09:35:26 -05:00
|
|
|
<?php
|
|
|
|
/**
|
2014-05-03 18:48:08 -05:00
|
|
|
* Patch testing component for the Joomla! CMS
|
2014-05-01 09:35:26 -05:00
|
|
|
*
|
2015-02-22 16:29:43 -05:00
|
|
|
* @copyright Copyright (C) 2011 - 2012 Ian MacLennan, Copyright (C) 2013 - 2015 Open Source Matters, Inc. All rights reserved.
|
2014-05-01 09:35:26 -05:00
|
|
|
* @license GNU General Public License version 2 or later
|
|
|
|
*/
|
|
|
|
|
2014-05-03 18:48:08 -05:00
|
|
|
namespace PatchTester\Table;
|
2014-05-01 09:35:26 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Pulls Table class
|
|
|
|
*
|
2014-05-03 18:48:08 -05:00
|
|
|
* @since 2.0
|
2014-05-01 09:35:26 -05:00
|
|
|
*/
|
2014-05-03 18:48:08 -05:00
|
|
|
class PullsTable extends \JTable
|
2014-05-01 09:35:26 -05:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Constructor
|
|
|
|
*
|
2014-05-03 18:48:08 -05:00
|
|
|
* @param \JDatabaseDriver &$db JDatabaseDriver object.
|
2014-05-01 09:35:26 -05:00
|
|
|
*
|
2014-05-03 18:48:08 -05:00
|
|
|
* @since 2.0
|
2014-05-01 09:35:26 -05:00
|
|
|
*/
|
|
|
|
public function __construct(&$db)
|
|
|
|
{
|
|
|
|
parent::__construct('#__patchtester_pulls', 'id', $db);
|
|
|
|
}
|
|
|
|
}
|