From 2b8e70c3803eb77ad1762f57cb37de1a8369e492 Mon Sep 17 00:00:00 2001 From: Michael Babker Date: Sun, 30 Oct 2016 19:31:09 -0500 Subject: [PATCH] Change typehint --- .../PatchTester/Controller/AbstractController.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/administrator/components/com_patchtester/PatchTester/Controller/AbstractController.php b/administrator/components/com_patchtester/PatchTester/Controller/AbstractController.php index 081a105..c8bff28 100644 --- a/administrator/components/com_patchtester/PatchTester/Controller/AbstractController.php +++ b/administrator/components/com_patchtester/PatchTester/Controller/AbstractController.php @@ -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);