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 - Find usages doesn't find usages in parent construct
Summary: Find usages doesn't find usages in parent construct
Status: RESOLVED DUPLICATE of bug 204167
Alias: None
Product: php
Classification: Unclassified
Component: Navigation (show other bugs)
Version: 8.0
Hardware: PC Windows 7 x64
: P3 normal (vote)
Assignee: Ondrej Brejla
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2014-06-19 14:53 UTC by andyr_it
Modified: 2014-07-22 07:54 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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 ***