PhpStorm Field accessed via magic method

后端 未结 3 2087
心在旅途
心在旅途 2021-02-02 05:07

I have ignited datatables Library in my CodeIgniter library folder.

Some Code from Library

class Datatables
{
    /**
     * Global container variables for         


        
3条回答
  •  花落未央
    2021-02-02 06:01

    If you don't want to disable the inspection for the whole project, and can't modify the class file to add a @property tag, this is how to suppress the warning at the location where it is used:

    /** @noinspection PhpUndefinedFieldInspection */
    

    Just add it in a new line right before the line where the magic field is used.

提交回复
热议问题