gnu-social/lib/notices/fullnoticestream.php

12 lines
209 B
PHP
Raw Normal View History

2016-02-16 10:21:39 +09: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 10:21:39 +09:00
{
protected $selectVerbs = [];
}