33
0
mirror of https://github.com/joomla-extensions/patchtester.git synced 2025-01-23 15:18:36 +00:00

27 lines
522 B
PHP
Raw Normal View History

2011-10-11 09:02:57 -04:00
<?php
/**
2013-07-12 21:26:21 -05:00
* @package PatchTester
*
* @copyright Copyright (C) 2011 - 2012 Ian MacLennan, Copyright (C) 2013 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later
2011-10-11 09:02:57 -04:00
*/
defined('_JEXEC') or die;
/**
* PatchTester Controller
*
2012-06-12 13:42:45 -05:00
* @package PatchTester
2013-07-12 21:26:21 -05:00
* @since 1.0
2011-10-11 09:02:57 -04:00
*/
2012-09-08 20:53:44 -05:00
class PatchTesterController extends JControllerLegacy
2011-10-11 09:02:57 -04:00
{
/**
2013-07-12 21:26:21 -05:00
* The default view for the display method.
2011-10-11 09:02:57 -04:00
*
2013-07-12 21:26:21 -05:00
* @var string
* @since 1.0
2011-10-11 09:02:57 -04:00
*/
2013-07-12 21:26:21 -05:00
protected $default_view = 'pulls';
2011-10-11 09:02:57 -04:00
}