gnu-social/lib/fullnoticestream.php

12 lines
209 B
PHP
Raw Normal View History

2016-02-16 01:21:39 +00:00
<?php
if (!defined('GNUSOCIAL')) { exit(1); }
/**
* Class for notice streams that does not filter anything out.
*/
abstract class FullNoticeStream extends NoticeStream
2016-02-16 01:21:39 +00:00
{
protected $selectVerbs = [];
}