threadinggroupnoticestream.php 240 B

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