31
0
mirror of https://github.com/joomla-extensions/patchtester.git synced 2024-09-27 12:09:01 +00:00

Change typehint

This commit is contained in:
Michael Babker 2016-10-30 19:31:09 -05:00
parent 4fa9769b47
commit 2b8e70c380

View File

@ -8,6 +8,7 @@
namespace PatchTester\Controller;
use Joomla\Application\AbstractApplication;
use Joomla\Registry\Registry;
/**
@ -38,12 +39,12 @@ abstract class AbstractController extends \JControllerBase
/**
* Instantiate the controller
*
* @param \JInput $input The input object.
* @param \JApplicationBase $app The application object.
* @param \JInput $input The input object.
* @param AbstractApplication $app The application object.
*
* @since 2.0
*/
public function __construct(\JInput $input = null, \JApplicationBase $app = null)
public function __construct(\JInput $input = null, AbstractApplication $app = null)
{
parent::__construct($input, $app);