mirror of
https://github.com/joomla-extensions/patchtester.git
synced 2024-11-15 17:47:10 +00:00
Change typehint
This commit is contained in:
parent
4fa9769b47
commit
2b8e70c380
@ -8,6 +8,7 @@
|
||||
|
||||
namespace PatchTester\Controller;
|
||||
|
||||
use Joomla\Application\AbstractApplication;
|
||||
use Joomla\Registry\Registry;
|
||||
|
||||
/**
|
||||
@ -39,11 +40,11 @@ abstract class AbstractController extends \JControllerBase
|
||||
* Instantiate the controller
|
||||
*
|
||||
* @param \JInput $input The input object.
|
||||
* @param \JApplicationBase $app The application 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);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user