This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 245143

Summary: Find usages doesn't find usages in parent construct
Product: php Reporter: andyr_it
Component: NavigationAssignee: Ondrej Brejla <obrejla>
Status: RESOLVED DUPLICATE    
Severity: normal    
Priority: P3    
Version: 8.0   
Hardware: PC   
OS: Windows 7 x64   
Issue Type: DEFECT Exception Reporter:

Description andyr_it 2014-06-19 14:53:12 UTC
Doing a Find usages in a parent class does not find references to children using the parent::<method>() construct 

class TestClass {
  public function pdf() {
  }
}

class SubClass extends TestClass {
  public function pdf() {
  parent::pdf();
  }
}

doing a find usages on the TestClass does not show up the usage in parent::pdf() in the SubClass.
Comment 1 Ondrej Brejla 2014-07-22 07:54:19 UTC

*** This bug has been marked as a duplicate of bug 204167 ***