threadingpublicnoticestream.php 269 B

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