Skip to main content



      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 02:53
Eclipse UserFriend
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: Sat Mar 22 09:27:31 EDT 2025

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

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

Back to the top