]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Added type-hint for StartNoticeSourceLink hooks.
authorRoland Haeder <roland@mxchange.org>
Mon, 25 Jan 2016 14:40:13 +0000 (15:40 +0100)
committerRoland Häder <roland@mxchange.org>
Sun, 29 Mar 2020 22:21:30 +0000 (00:21 +0200)
Signed-off-by: Roland Haeder <roland@mxchange.org>
plugins/Linkback/LinkbackPlugin.php
plugins/OStatus/OStatusPlugin.php

index 212aaca55f6eafad916b7a4ef227ae3f9d4c9ea5..f44a11ac64451ef08d3925b70d93493f61795f20 100644 (file)
@@ -389,7 +389,7 @@ class LinkbackPlugin extends Plugin
         return true;
     }
 
-    function onStartNoticeSourceLink($notice, &$name, &$url, &$title)
+    function onStartNoticeSourceLink(Notice $notice, &$name, &$url, &$title)
     {
         // If we don't handle this, keep the event handler going
         if (!in_array($notice->source, array('linkback'))) {
index 0cc5878fbd5c59885b4190f284317e783a8d3e66..580abf94e0ecd6aea3a6f1bd18018abcd546db75 100644 (file)
@@ -589,7 +589,7 @@ class OStatusPlugin extends Plugin
      * @param string out &$title
      * @return mixed hook return code
      */
-    function onStartNoticeSourceLink($notice, &$name, &$url, &$title)
+    function onStartNoticeSourceLink(Notice $notice, &$name, &$url, &$title)
     {
         // If we don't handle this, keep the event handler going
         if (!in_array($notice->source, array('ostatus', 'share'))) {