HeartbeatController.class.php
496 Bytes
<?php
/**
* Created by PhpStorm.
* User: yingcai
* Date: 2018/1/23
* Time: 下午2:04
*/
namespace Apicp\Controller\LiveRoom;
class HeartbeatController extends AbstractController
{
/**
* 直播间登陆监听接口
* @author houyingcai
* @desc 进入直播间接口
* @param Int lm_id:true:1 直播活动ID
* @return bool
*/
public function Index()
{
// 因为基类做了这里要做的事所以空着就行
return true;
}
}