gnu-social/lib/threadingnetworkpublicnoticestream.php
Mikael Nordfeldth a5d27d9ce7 /main/all will give a network-wide public stream
Qvitter had implemented this as a "PublicAndExternal" stream, but
I figured we might as well put it into the GNU social core.
2015-01-28 20:25:39 +01:00

12 lines
258 B
PHP

<?php
if (!defined('GNUSOCIAL')) { exit(1); }
class ThreadingNetworkPublicNoticeStream extends ThreadingNoticeStream
{
public function __construct(Profile $scoped=null)
{
parent::__construct(new NetworkPublicNoticeStream($scoped));
}
}