31
0
mirror of https://github.com/joomla-extensions/patchtester.git synced 2024-06-03 14:10:47 +00:00
patchtester/administrator/components/com_patchtester/PatchTester/Model/TestsModel.php
2020-03-31 20:19:05 +02:00

51 lines
982 B
PHP

<?php
/**
* Patch testing component for the Joomla! CMS
*
* @copyright Copyright (C) 2011 - 2012 Ian MacLennan, Copyright (C) 2013 - 2018 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later
*/
namespace PatchTester\Model;
/**
* Methods supporting applied pull requests.
*
* @since 2.0
*/
class TestsModel extends AbstractModel
{
/**
* Retrieves a list of applied patches
*
* @return array List of applied patches
*
* @since 2.0
*/
public function getAppliedPatches(): array
{
$db = $this->getDb();
$db->setQuery(
$db->getQuery(true)
->select('*')
->from($db->quoteName('#__patchtester_tests'))
->where($db->quoteName('applied') . ' = 1')
);
return $db->loadObjectList('pull_id');
}
/**
* Truncates the tests table
*
* @return void
*
* @since 2.0
*/
public function truncateTable(): void
{
$this->getDb()->truncateTable('#__patchtester_tests');
}
}