Php storm 没有注意到缺失的字段

Php storm does not notice on missing fields

当我在 class 中的字段丢失时,我没有收到任何通知,请参阅示例

class test
{
    public function abc()
    {
        $this->variable = "abc";
    }

}

在这里 phpstorm 必须向我显示 $this->variable 的注意事项,因为它没有在 class.
中创建为字段 有什么建议吗?

您确定检查了您的检查资料 Undefined Fields 吗?