Skip to content
Open
Changes from 1 commit
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
Prev Previous commit
Next Next commit
fix test
  • Loading branch information
xepozz committed Dec 21, 2024
commit 6e2ceb221d50a71b1d063d84d376e47867f310c4
3 changes: 3 additions & 0 deletions tests/ConfigTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ private function createContainer(?string $postfix = null): Container

private function getDiConfig(?string $postfix = null): array
{
$params = [
'yiisoft/error-handler' => ['solutionProviders' => []],
];
return require dirname(__DIR__) . '/config/di' . ($postfix !== null ? '-' . $postfix : '') . '.php';
}
}