2016-01-06 18:46:56 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
if (!defined('GNUSOCIAL')) { exit(1); }
|
|
|
|
|
|
|
|
class ThreadingGroupNoticeStream extends ThreadingNoticeStream
|
|
|
|
{
|
2016-03-01 13:51:47 +00:00
|
|
|
function __construct($group, Profile $scoped=null)
|
2016-01-06 18:46:56 +00:00
|
|
|
{
|
2016-03-01 13:51:47 +00:00
|
|
|
parent::__construct(new GroupNoticeStream($group, $scoped));
|
2016-01-06 18:46:56 +00:00
|
|
|
}
|
|
|
|
}
|