mirror of
https://github.com/friendica/friendica
synced 2024-12-22 18:40:17 +00:00
require AppHelper in App
This commit is contained in:
parent
241031f1fa
commit
af51441d88
1 changed files with 2 additions and 2 deletions
|
@ -142,7 +142,7 @@ class App
|
|||
IHandleUserSessions $session,
|
||||
DbaDefinition $dbaDefinition,
|
||||
ViewDefinition $viewDefinition,
|
||||
AppHelper $appHelper = null,
|
||||
AppHelper $appHelper,
|
||||
) {
|
||||
$this->container = $container;
|
||||
$this->requestId = $request->getRequestId();
|
||||
|
@ -155,7 +155,7 @@ class App
|
|||
$this->l10n = $l10n;
|
||||
$this->args = $args;
|
||||
$this->session = $session;
|
||||
$this->appHelper = $appHelper ?? DI::appHelper();
|
||||
$this->appHelper = $appHelper;
|
||||
|
||||
$this->load($dbaDefinition, $viewDefinition);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue