threadingnetworkpublicnoticestream.php 258 B

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