forked from GNUsocial/gnu-social
12 lines
200 B
PHP
12 lines
200 B
PHP
|
<?php
|
||
|
|
||
|
if (!defined('GNUSOCIAL')) { exit(1); }
|
||
|
|
||
|
/**
|
||
|
* Class for notice streams that does not filter anything out.
|
||
|
*/
|
||
|
class FullNoticeStream extends NoticeStream
|
||
|
{
|
||
|
protected $selectVerbs = [];
|
||
|
}
|