php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #29354 Exception constructor marked as both public and protected
Submitted: 2004-07-23 17:57 UTC Modified: 2004-08-03 15:20 UTC
From: Jared dot Williams1 at ntlworld dot com Assigned:
Status: Closed Package: Class/Object related
PHP Version: 5.0.0 OS: Windows 2000/IIS
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: Jared dot Williams1 at ntlworld dot com
New email:
PHP Version: OS:

 

 [2004-07-23 17:57 UTC] Jared dot Williams1 at ntlworld dot com
Description:
------------
Exception class constructor when inspected via the Reflection api, seems to be both marked a public and protected.

Reproduce code:
---------------
$exceptionClass = new ReflectionClass('Exception');

$exceptionConstructor = $exceptionClass->getConstructor();

var_dump($exceptionConstructor->isPublic());
var_dump($exceptionConstructor->isProtected());

Expected result:
----------------
bool(true) bool(false) 

or 

bool(false) bool(true)
 

Actual result:
--------------
bool(true) bool(true) 

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2004-07-25 19:54 UTC] helly@php.net
Please try using this CVS snapshot:

  http://snaps.php.net/php5-latest.tar.gz
 
For Windows:
 
  http://snaps.php.net/win32/php5-win32-latest.zip
 [2004-07-26 02:35 UTC] Jared dot Williams1 at ntlworld dot com
Still reports the Exception constructor as both public & protected.

PHP Version 5.1.0-dev 
System  Windows NT WIN2KS 5.0 build 2195  
Build Date  Jul 26 2004 00:23:15
 [2004-07-26 03:18 UTC] helly@php.net
Are you using extension com_dotnet?
 [2004-07-26 13:07 UTC] Jared dot Williams1 at ntlworld dot com
No, just standard & Reflection.
 [2004-08-02 18:27 UTC] helly@php.net
Please try using this CVS snapshot:

  http://snaps.php.net/php5-latest.tar.gz
 
For Windows:
 
  http://snaps.php.net/win32/php5-win32-latest.zip


 [2004-08-03 15:20 UTC] Jared dot Williams1 at ntlworld dot com
Fixed
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Nov 21 12:01:29 2024 UTC