Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Language IDEs » PHP Development Tools (PDT) » Can display errors with undefined variables in class
Can display errors with undefined variables in class [message #1832315] Wed, 16 September 2020 06:53
afu chen is currently offline afu chenFriend
Messages: 1
Registered: September 2020
Junior Member
I want to display yellow uderline warning

but variable $a not display any error or warning

class Test{
    
    //private $a = '';
    private $b = '';
    
    public function getA()
    {
        return $this->a;
    }

    public function getB()
    {
        return $this->b;
    }
}





Previous Topic:Xdebug - breakpoints don't work
Next Topic:Generate Getters and Setters not working
Goto Forum:
  


Current Time: Thu Mar 28 14:58:44 GMT 2024

Powered by FUDForum. Page generated in 0.03185 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top