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 containe… #47

Merged
merged 1 commit into from
Jan 30, 2024
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
4 changes: 2 additions & 2 deletions test/Olcs/src/Listener/RouteParam/ConversationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -165,12 +165,12 @@ public function testInvoke()
->andReturn($mockQueryService);
$mockSl->shouldReceive('get')
->once()
->with(HelperPluginManager::class)
->with('ViewHelperManager')
->andReturn($mockHelperPluginManager);

$mockHelperPluginManager->shouldReceive('get')
->once()
->with(Navigation::class)
->with('Navigation')
->andReturn($mockNavigation);

$sut = new Conversation();
Expand Down
Loading