33
0
mirror of https://github.com/joomla-extensions/patchtester.git synced 2025-01-25 16:18:26 +00:00

27 lines
529 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
*
2014-01-02 20:48:28 -06:00
* @copyright Copyright (C) 2011 - 2012 Ian MacLennan, Copyright (C) 2013 - 2014 Open Source Matters, Inc. All rights reserved.
2013-07-12 21:26:21 -05:00
* @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
}