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

2019-02-21 Thread Fabian Kleinhans (JIRA)
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}
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-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

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



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

2019-02-21 Thread Fabian Kleinhans (JIRA)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-2158?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Fabian Kleinhans updated NETBEANS-2158:
---
Description: 
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}
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

 

  was:
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}
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

 


> 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
>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}
>  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-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

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



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

2019-02-21 Thread Fabian Kleinhans (JIRA)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-2158?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Fabian Kleinhans updated NETBEANS-2158:
---
Issue Type: Improvement  (was: Bug)

> No error when accessing undeclared or private properties
> 
>
> Key: NETBEANS-2158
> URL: https://issues.apache.org/jira/browse/NETBEANS-2158
> Project: NetBeans
>  Issue Type: Improvement
>  Components: php - Code Analysis
>Affects Versions: 10.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}
>  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-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

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



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

2019-02-21 Thread Fabian Kleinhans (JIRA)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-2158?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Fabian Kleinhans updated NETBEANS-2158:
---
Description: 
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}
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

 

  was:
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}
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

 


> No error when accessing undeclared or private properties
> 
>
> Key: NETBEANS-2158
> URL: https://issues.apache.org/jira/browse/NETBEANS-2158
> Project: NetBeans
>  Issue Type: Improvement
>  Components: php - Code Analysis
>Affects Versions: 10.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}
>  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
(v7.6.3#76005)

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

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



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

2019-03-16 Thread Fabian Kleinhans (JIRA)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-2158?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Fabian Kleinhans updated NETBEANS-2158:
---
Issue Type: Bug  (was: Improvement)

> 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
>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}
>  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
(v7.6.3#76005)

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

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



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

2019-04-08 Thread Fabian Kleinhans (JIRA)


[ 
https://issues.apache.org/jira/browse/NETBEANS-2158?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16812641#comment-16812641
 ] 

Fabian Kleinhans commented on NETBEANS-2158:


Any feedback? :(

> 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
>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}
>  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
(v7.6.3#76005)

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

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



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

2019-04-22 Thread Fabian Kleinhans (JIRA)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-2158?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Fabian Kleinhans updated NETBEANS-2158:
---
Affects Version/s: 11.0

This problem still exists in NetBeans 11. 

> 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, 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}
>  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
(v7.6.3#76005)

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

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