[cookienotice] Fix wrong type-hint in hook function cookienotice_page_content_top

- Fix "Argument 2 passed to cookienotice_page_content_top() must be of the type array, string given" error
This commit is contained in:
Hypolite Petovan 2022-07-03 00:26:55 -04:00 committed by Michael
parent e924ada872
commit 1ba022e851
1 changed files with 1 additions and 1 deletions

View File

@ -82,7 +82,7 @@ function cookienotice_addon_admin_post(App $a)
*
* @return void
*/
function cookienotice_page_content_top(App $a, array &$b)
function cookienotice_page_content_top(App $a, string &$b)
{
DI::page()->registerStylesheet(__DIR__ . '/cookienotice.css');
DI::page()->registerFooterScript(__DIR__ . '/cookienotice.js');