chat_room.php 337 B

123456789101112131415161718
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: stanley-king
  5. * Date: 2018/7/30
  6. * Time: 下午9:10
  7. */
  8. namespace room;
  9. class chat_room extends base_room
  10. {
  11. public function __construct($cinfos, array $participants = [])
  12. {
  13. $this->mRoomType = proto_type::sroom_chat;
  14. parent::__construct($cinfos, $participants);
  15. }
  16. }