1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 22:10:45 +02:00

Merge branch '3.3.x'

This commit is contained in:
Marc Alexander
2023-09-30 13:22:46 +02:00

View File

@@ -30,7 +30,7 @@ class phpbb_avatar_manager_test extends \phpbb_database_test_case
protected function setUp(): void
{
global $phpbb_root_path, $phpEx;
global $phpbb_dispatcher, $phpbb_root_path, $phpEx;
// Mock phpbb_container
$phpbb_container = $this->createMock('Symfony\Component\DependencyInjection\ContainerInterface');
@@ -55,6 +55,7 @@ class phpbb_avatar_manager_test extends \phpbb_database_test_case
$imagesize = new \FastImageSize\FastImageSize();
$dispatcher = new phpbb_mock_event_dispatcher();
$phpbb_dispatcher = $dispatcher;
$controller_helper = $this->createMock('\phpbb\controller\helper');