Skip to content
This repository has been archived by the owner on Aug 16, 2024. It is now read-only.

Commit

Permalink
fix: consolidate Navigation and navigation (#43)
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshuaLicense authored Jan 31, 2024
1 parent dba65cd commit 72e5266
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion module/Olcs/config/module.config.php
Original file line number Diff line number Diff line change
Expand Up @@ -1407,7 +1407,6 @@
'CookieDeleteCookieNamesProvider' => CookieService\DeleteCookieNamesProviderFactory::class,
ProcessingService\DashboardProcessingService::class => ProcessingService\DashboardProcessingServiceFactory::class,
'Olcs\InputFilter\EbsrPackInput' => \Olcs\InputFilter\EbsrPackFactory::class,
'navigation' => Laminas\Navigation\Service\DefaultNavigationFactory::class,
'Olcs\Navigation\DashboardNavigation' => Olcs\Navigation\DashboardNavigationFactory::class,
Olcs\Controller\Listener\Navigation::class => Olcs\Controller\Listener\NavigationFactory::class,
'QaFormProvider' => QaService\FormProviderFactory::class,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public function __invoke(ContainerInterface $container, $requestedName, array $o
$authService = $container->get(AuthorizationService::class);
$scriptFactory = $container->get(ScriptFactory::class);
$formHelper = $container->get(FormHelperService::class);
$navigation = $container->get('Navigation');
$navigation = $container->get('navigation');
$formElementManager = $container->get('FormElementManager');
$viewHelperManager = $container->get('ViewHelperManager');
$dataServiceManager = $container->get('DataServiceManager');
Expand Down

0 comments on commit 72e5266

Please sign in to comment.