1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-05-18 13:30:08 +02:00

[ticket/11582] Fix event dispatcher class name

PHPBB3-11582
This commit is contained in:
Joas Schilling 2013-06-28 11:16:52 +02:00
parent e8d2a2fd88
commit 137cec5895

@ -19,16 +19,16 @@ class phpbb_permissions
{ {
/** /**
* Event dispatcher object * Event dispatcher object
* @var phpbb_dispatcher * @var phpbb_event_dispatcher
*/ */
protected $dispatcher; protected $dispatcher;
/** /**
* Constructor * Constructor
* *
* @param phpbb_dispatcher $phpbb_dispatcher Event dispatcher * @param phpbb_event_dispatcher $phpbb_dispatcher Event dispatcher
* @return null * @return null
*/ */
public function __construct($phpbb_dispatcher) public function __construct(phpbb_event_dispatcher $phpbb_dispatcher)
{ {
$this->dispatcher = $phpbb_dispatcher; $this->dispatcher = $phpbb_dispatcher;
} }