mirror of
https://github.com/joomla-extensions/patchtester.git
synced 2025-01-10 17:24:39 +00:00
52 lines
1.2 KiB
PHP
52 lines
1.2 KiB
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;
|
|
|
|
// phpcs:disable PSR1.Files.SideEffects
|
|
\defined('_JEXEC') or die;
|
|
// phpcs:enable PSR1.Files.SideEffects
|
|
|
|
/**
|
|
* 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');
|
|
}
|
|
}
|