]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/threadingpublicnoticestream.php
Yes, you see it? I got confused if it is a Plugin instance or just the plugin's name.
[quix0rs-gnu-social.git] / lib / threadingpublicnoticestream.php
1 <?php
2
3 if (!defined('GNUSOCIAL')) { exit(1); }
4
5 class ThreadingPublicNoticeStream extends ThreadingNoticeStream
6 {
7     function __construct($scoped)
8     {
9         parent::__construct(new PublicNoticeStream($scoped));
10     }
11 }