1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-06-21 10:40:58 +02:00

[feature/event-dispatcher] Change phpbb_event_dispatcher to inheritance, tests

PHPBB3-9550
This commit is contained in:
Igor Wiedler
2012-03-24 15:45:18 +01:00
parent 935a4abb7e
commit 400277c036
4 changed files with 72 additions and 89 deletions

View File

@ -100,7 +100,7 @@ $phpbb_class_loader_ext->set_cache($cache->get_driver());
$phpbb_class_loader->set_cache($cache->get_driver());
// Instantiate some basic classes
$phpbb_dispatcher = new phpbb_event_dispatcher_wrapper(new EventDispatcher());
$phpbb_dispatcher = new phpbb_event_dispatcher();
$request = new phpbb_request();
$user = new user();
$auth = new auth();