You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@netbeans.apache.org by "Fabian Kleinhans (JIRA)" <ji...@apache.org> on 2019/02/21 19:33:00 UTC

[jira] [Created] (NETBEANS-2158) No error when accessing undeclared or private properties

Fabian Kleinhans created NETBEANS-2158:
------------------------------------------

             Summary: No error when accessing undeclared or private properties
                 Key: NETBEANS-2158
                 URL: https://issues.apache.org/jira/browse/NETBEANS-2158
             Project: NetBeans
          Issue Type: Bug
          Components: php - Code Analysis
    Affects Versions: 10.0
            Reporter: Fabian Kleinhans
         Attachments: code.png

Hi,

I just switched from Netbeans 8.2 to 10 some days ago.Now I wonder why accessing undeclared or private properties in my PHP files are not marked in the code like in 8.2. E.g.:
{code:java}
<?php
class A {
 
  private $bar;
 
  public function __construct() {
    $this->bar = 1;
  }
}

$foo = new A();
echo $foo->bar;
echo $foo->bar2;
{code}
This code have green status saying "No errors". The project is set as PHP-project.

Have I missed a setting? I spent hours of research but didn't find a solution.

Thanks for any hint!

Fabian

 



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@netbeans.apache.org
For additional commands, e-mail: commits-help@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists