]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Stricter typing in Realtime plugin functions
authorMikael Nordfeldth <mmn@hethane.se>
Thu, 24 Mar 2016 00:41:58 +0000 (01:41 +0100)
committerMikael Nordfeldth <mmn@hethane.se>
Thu, 24 Mar 2016 00:41:58 +0000 (01:41 +0100)
plugins/Realtime/RealtimePlugin.php

index 172e9272af865995a9a75dfd546072e337362082..8b7767ac15001deea27ded6fb2dd421b471aee01 100644 (file)
@@ -311,7 +311,7 @@ class RealtimePlugin extends Plugin
         return false; // No default processing
     }
 
-    function noticeAsJson($notice)
+    function noticeAsJson(Notice $notice)
     {
         // FIXME: this code should be abstracted to a neutral third
         // party, like Notice::asJson(). I'm not sure of the ethics
@@ -347,7 +347,7 @@ class RealtimePlugin extends Plugin
         return $arr;
     }
 
-    function getNoticeTags($notice)
+    function getNoticeTags(Notice $notice)
     {
         $tags = null;