From d2507a6266e14376e24cbd8434a5cbc7f6a00b19 Mon Sep 17 00:00:00 2001 From: Mikael Nordfeldth Date: Tue, 16 Feb 2016 02:24:38 +0100 Subject: [PATCH] Gotta declare FullNoticeStream as abstract class --- lib/fullnoticestream.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/fullnoticestream.php b/lib/fullnoticestream.php index 8433c18c9c..2f83007469 100644 --- a/lib/fullnoticestream.php +++ b/lib/fullnoticestream.php @@ -5,7 +5,7 @@ if (!defined('GNUSOCIAL')) { exit(1); } /** * Class for notice streams that does not filter anything out. */ -class FullNoticeStream extends NoticeStream +abstract class FullNoticeStream extends NoticeStream { protected $selectVerbs = []; }