threadingnetworkpublicnoticestream.php 303 B

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