31
0
mirror of https://github.com/joomla-extensions/patchtester.git synced 2024-05-31 21:00:47 +00:00
patchtester/administrator/components/com_patchtester/src/Model/FetchModel.php
Roland Dalmulder 96b8480c51
Clean up controllers and models
Signed-off-by: Roland Dalmulder <contact@rolandd.com>
2023-08-20 15:54:48 +02:00

24 lines
530 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 Joomla\Component\Patchtester\Administrator\Model;
// phpcs:disable PSR1.Files.SideEffects
\defined('_JEXEC') or die;
// phpcs:enable PSR1.Files.SideEffects
/**
* Model class for the fetch modal view
*
* @since 2.0
*/
class FetchModel extends PullsModel
{
}