[qcomment] Fix wrong type hint for footer hook function #1266

Merged
MrPetovan merged 1 commits from bug/fatal-errors into develop 2022-06-25 11:06:39 +02:00
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ function qcomment_install()
Hook::register('footer' , __FILE__, 'qcomment_footer');
}
function qcomment_footer(App $a, array &$b)
function qcomment_footer(App $a, string &$b)
{
DI::page()->registerFooterScript('addon/qcomment/qcomment.js');
}