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