threadinggroupnoticestream.php 251 B

123456789101112
  1. <?php
  2. if (!defined('GNUSOCIAL')) { exit(1); }
  3. class ThreadingGroupNoticeStream extends ThreadingNoticeStream
  4. {
  5. function __construct($group, Profile $scoped=null)
  6. {
  7. parent::__construct(new GroupNoticeStream($group, $scoped));
  8. }
  9. }