php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #39067 getDeclaringClass and private attrs
Submitted: 2006-10-06 17:15 UTC Modified: 2006-10-06 17:35 UTC
From: dave at dgx dot cz Assigned:
Status: Closed Package: SPL related
PHP Version: 5.2.0RC5 OS:
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: dave at dgx dot cz
New email:
PHP Version: OS:

 

 [2006-10-06 17:15 UTC] dave at dgx dot cz
Description:
------------
ReflectionProperty::getDeclaringClass

Reproduce code:
---------------
class A {
  private $x;

}

class B extends A {
  private $x;

}


$rc = new ReflectionClass('B');
echo $rc->getProperty('x')->getDeclaringClass()->getName();


Expected result:
----------------
B

Actual result:
--------------
A

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2006-10-06 17:35 UTC] tony2001@php.net
This bug has been fixed in CVS.

Snapshots of the sources are packaged every three hours; this change
will be in the next snapshot. You can grab the snapshot at
http://snaps.php.net/.
 
Thank you for the report, and for helping us make PHP better.


 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Nov 21 15:01:30 2024 UTC