mirror of
https://github.com/joomla-extensions/patchtester.git
synced 2024-11-10 15:21:01 +00:00
19 lines
389 B
PHP
19 lines
389 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\View;
|
|
|
|
/**
|
|
* Default HTML view class.
|
|
*
|
|
* @since 2.0
|
|
*/
|
|
class DefaultHtmlView extends AbstractHtmlView
|
|
{
|
|
}
|