diff options
| author | Joas Schilling <nickvergessen@gmx.de> | 2014-07-07 20:23:10 +0200 |
|---|---|---|
| committer | Joas Schilling <nickvergessen@gmx.de> | 2014-07-07 20:23:10 +0200 |
| commit | 29a07404d3e34fd4ec5ad1cb83992b78658808b9 (patch) | |
| tree | 184242329792f53653a46f13cef164a97f24eeda /phpBB/phpbb/log/log.php | |
| parent | b9750bb590fe88e59d72e2099053c3bf21e6e5a6 (diff) | |
| parent | 539eadc450c2eb6d901aa470fcbdf59e0b923fec (diff) | |
| download | forums-29a07404d3e34fd4ec5ad1cb83992b78658808b9.tar forums-29a07404d3e34fd4ec5ad1cb83992b78658808b9.tar.gz forums-29a07404d3e34fd4ec5ad1cb83992b78658808b9.tar.bz2 forums-29a07404d3e34fd4ec5ad1cb83992b78658808b9.tar.xz forums-29a07404d3e34fd4ec5ad1cb83992b78658808b9.zip | |
Merge pull request #2672 from Nicofuma/ticket/12782
[ticket/12782] Use an interface for the phpbb event_dispatcher
* Nicofuma/ticket/12782:
[ticket/12782] Add doc block
[ticket/12782] Use an interface for the phpbb event_dispatcher
Diffstat (limited to 'phpBB/phpbb/log/log.php')
| -rw-r--r-- | phpBB/phpbb/log/log.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/phpbb/log/log.php b/phpBB/phpbb/log/log.php index 4ffe7345f3..c522c3273f 100644 --- a/phpBB/phpbb/log/log.php +++ b/phpBB/phpbb/log/log.php @@ -70,7 +70,7 @@ class log implements \phpbb\log\log_interface /** * Event dispatcher object - * @var \phpbb\event\dispatcher + * @var \phpbb\event\dispatcher_interface */ protected $dispatcher; @@ -98,7 +98,7 @@ class log implements \phpbb\log\log_interface * @param \phpbb\db\driver\driver_interface $db Database object * @param \phpbb\user $user User object * @param \phpbb\auth\auth $auth Auth object - * @param \phpbb\event\dispatcher $phpbb_dispatcher Event dispatcher + * @param \phpbb\event\dispatcher_interface $phpbb_dispatcher Event dispatcher * @param string $phpbb_root_path Root path * @param string $relative_admin_path Relative admin root path * @param string $php_ext PHP Extension |
