fullnoticestream.php 209 B

123456789101112
  1. <?php
  2. if (!defined('GNUSOCIAL')) { exit(1); }
  3. /**
  4. * Class for notice streams that does not filter anything out.
  5. */
  6. abstract class FullNoticeStream extends NoticeStream
  7. {
  8. protected $selectVerbs = [];
  9. }