<?php
namespace Home\Controller;
use EasyWeChat\Foundation\Application;
class IndexController extends WxController
{
public $wx;
public function _initialize()
{
$this->wx = new Application($this->options);
//这里调用$this->wx-> 之后就可以提示后面的方法属性等等
}
public function index()
{
$this->wx->server->setMessageHandler(function ($message) {
return "哈哈!";
});
//但是这里调用$this->wx-> 之后则不能提示后面的方法或者属性
}
}
Jelly,怎么配置phpstorm就可以代码提示呢?