]> git.mxchange.org Git - friendica-addons.git/commitdiff
[buglink]: Added type-hint 'App'
authorRoland Häder <roland@mxchange.org>
Sun, 29 Jul 2018 20:22:50 +0000 (22:22 +0200)
committerRoland Häder <roland@mxchange.org>
Sun, 29 Jul 2018 20:23:16 +0000 (22:23 +0200)
buglink/buglink.php

index 71c22a673cc458605269dd5972d3bb8f27e5eb04..91d860cd12105d793cb2bac2ab070876b24df901 100644 (file)
@@ -5,6 +5,8 @@
  * Version: 1.0
  * Author: Mike Macgirvin <mike@macgirvin.com>
  */
+
+use Friendica\App;
 use Friendica\Core\Addon;
 use Friendica\Core\L10n;
 
@@ -18,7 +20,7 @@ function buglink_uninstall()
        Addon::unregisterHook('page_end', 'addon/buglink/buglink.php', 'buglink_active');
 }
 
-function buglink_active(&$a, &$b)
+function buglink_active(App $a, &$b)
 {
        $b .= '<div id="buglink_wrapper" style="position: fixed; bottom: 5px; left: 5px;"><a href="https://github.com/friendica/friendica/issues" target="_blank" title="' . L10n::t('Report Bug') . '"><img src="addon/buglink/bug-x.gif" alt="' . L10n::t('Report Bug') . '" /></a></div>';
 }