19 lines
282 B
PHP
19 lines
282 B
PHP
<?php
|
|
|
|
namespace app\event\wechat;
|
|
|
|
use app\model\share\WeappShare as ShareModel;
|
|
|
|
|
|
/**
|
|
* 获取分享配置
|
|
*/
|
|
class WeappShareConfig
|
|
{
|
|
public function handle($param)
|
|
{
|
|
$share_model = new ShareModel();
|
|
return $share_model->getShareConfig($param);
|
|
}
|
|
|
|
} |