28 lines
297 B
PHP
28 lines
297 B
PHP
<?php
|
|
/**
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
namespace app\event\wechat;
|
|
|
|
use app\model\share\WeappShare as ShareModel;
|
|
|
|
|
|
/**
|
|
* 获取分享数据
|
|
*/
|
|
class WeappShareData
|
|
{
|
|
public function handle($param)
|
|
{
|
|
$share_model = new ShareModel();
|
|
return $share_model->getShareData($param);
|
|
}
|
|
|
|
} |