fix #269: use php7 syntax
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Simon Vieille 2023-07-15 14:50:15 +02:00
parent 8cd54eea19
commit b8a5a82fd2
Signed by: deblan
GPG key ID: 579388D585F70417

View file

@ -35,7 +35,7 @@ class AppRepository
public function __construct(
\OC_App $ocApp,
protected INavigationManager $navigationManager,
INavigationManager $navigationManager,
IFactory $l10nFactory,
ConfigProxy $config,
CategoryRepository $categoryRepository
@ -43,6 +43,7 @@ class AppRepository
$this->ocApp = $ocApp;
$this->l10nFactory = $l10nFactory;
$this->config = $config;
$this->navigationManager = $navigationManager;
$this->categoryRepository = $categoryRepository;
}