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

fix: Non local white screens when using strong types for the container #45

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion module/Olcs/src/Listener/RouteParam/Conversation.php
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ public function __invoke(ContainerInterface $container, $requestedName, array $o
{
$this->annotationBuilder = $container->get(AnnotationBuilder::class);
$this->queryService = $container->get(QueryService::class);
$this->navigationPlugin = $container->get(HelperPluginManager::class)->get(Navigation::class);
$this->navigationPlugin = $container->get('ViewHelperManager')->get('Navigation');

return $this;
}
Expand Down
Loading