[
https://issues.apache.org/jira/browse/NETBEANS-2158?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16930240#comment-16930240
]
Czukowski commented on NETBEANS-2158:
-------------------------------------
[~fabs25], [~hosunlee] this is not necessarily an error, some PHP classes
implement wild magic tricks to allow just that and NetBeans would have to work
really hard to not produce a false positive warning in those cases. I suggest
you give PHPStan a try, which is specifically designed to parse PHP code and
warn about all kinds of errors, Netbeans has a support for it.
> No error when accessing undeclared or private properties
> --------------------------------------------------------
>
> Key: NETBEANS-2158
> URL: https://issues.apache.org/jira/browse/NETBEANS-2158
> Project: NetBeans
> Issue Type: New Feature
> Components: php - Code Analysis, php - Editor
> Affects Versions: 10.0, 11.0
> Reporter: Fabian Kleinhans
> Priority: Major
> Labels: php, php7
> 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 has 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
(v8.3.2#803003)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists