]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/threadinggroupnoticestream.php
Last type-hint is an array, added.
[quix0rs-gnu-social.git] / lib / threadinggroupnoticestream.php
1 <?php
2
3 if (!defined('GNUSOCIAL')) { exit(1); }
4
5 class ThreadingGroupNoticeStream extends ThreadingNoticeStream
6 {
7     function __construct($group, $profile)
8     {
9         parent::__construct(new GroupNoticeStream($group, $profile));
10     }
11 }