ID: 39884
Updated by: [EMAIL PROTECTED]
Reported By: bugs at php dot frankkleine dot de
Status: Open
Bug Type: Unknown/Other Function
PHP Version: 5.2.0
New Comment:
Same goes for "parent" which works as type hint but will make
reflection try to look up a class called "parent" (and thus throw an
exception)
Previous Comments:
------------------------------------------------------------------------
[2006-12-19 13:18:21] bugs at php dot frankkleine dot de
Description:
------------
The ReflectionParameter::getClass() method does not work properly if
the reflected parameter uses "self" as type hint. Instead, a
ReflectionException is thrown saying that the class "self" does not
exist. Tested with 5.2 and 6.0.0-dev from Nov 22.
Reproduce code:
---------------
<?php
class stubParamTest
{
function paramTest(self $param)
{
// nothing to do
}
}
$test1 = new stubParamTest();
$test2 = new stubParamTest();
$test1->paramTest($test2);
$refParam = new ReflectionParameter(array('stubParamTest',
'paramTest'), 'param');
var_dump($refParam->getClass());
?>
Expected result:
----------------
object(ReflectionClass)[4]
public 'name' => 'stubParamTest' (length=13)
Actual result:
--------------
Fatal error: Uncaught exception 'ReflectionException' with message
'Class self does not exist' in
C:\apachefriends\xampp1.5.3a\xampp\htdocs\tests\type_hint_self.php:13
Stack trace: #0
C:\apachefriends\xampp1.5.3a\xampp\htdocs\tests\type_hint_self.php(13):
ReflectionParameter->getClass() #1 {main} thrown in
C:\apachefriends\xampp1.5.3a\xampp\htdocs\tests\type_hint_self.php on
line 13
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=39884&edit=1