threadingpublicnoticestream.php 224 B

123456789101112
  1. <?php
  2. if (!defined('GNUSOCIAL')) { exit(1); }
  3. class ThreadingPublicNoticeStream extends ThreadingNoticeStream
  4. {
  5. function __construct($scoped)
  6. {
  7. parent::__construct(new PublicNoticeStream($scoped));
  8. }
  9. }