Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
581 views
in Technique[技术] by (71.8m points)

PhpStorm魔术方法的警告怎么去除

Member has private access, but class has magic method __set

我在一个对象里设置了__set(),PhpStorm会标记颜色,很难受,虽然不影响运行,但是看着难受

//__set()方法用来设置私有属性
    public function __set($name,$value){
        $this->$name = $value;
        $this->adaption();
    }
    //__get()方法用来获取私有属性
    public function __get($name){
        return $this->$name;
    }

在这里插入图片描述
有什么办法去除吗,我试了inspactions里关闭了所有错误提示也不行
在这里插入图片描述


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

20200804-php.png


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...