31
0
mirror of https://github.com/joomla-extensions/patchtester.git synced 2024-05-31 12:50:47 +00:00
patchtester/administrator/components/com_patchtester/src/View/DefaultHtmlView.php

25 lines
529 B
PHP
Raw Normal View History

<?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\View;
// phpcs:disable PSR1.Files.SideEffects
\defined('_JEXEC') or die;
// phpcs:enable PSR1.Files.SideEffects
/**
* Default HTML view class.
*
* @since 2.0
*/
2019-08-28 01:05:12 +00:00
class DefaultHtmlView extends AbstractHtmlView
{
}