From:             
Operating system: All
PHP version:      5.3.2
Package:          Reflection related
Bug Type:         Bug
Bug description:ReflectionClass fails on Closure class

Description:
------------
According to the documentation, the Closure class implements __construct()
and __invoke(). However, when ReflectionClass::hasMethod() and
ReflectionClass::getMethods() are run against a closure, they do not report
the existence of the __invoke() method. On user-defined classes, the
existence of __invoke() is reported if __invoke() is defined.

Test script:
---------------
$closure = function($a) { echo $a; };



$reflection = new ReflectionClass($closure);

var_dump($reflection->hasMethod('__invoke()');

Expected result:
----------------
boolean true



Actual result:
--------------
boolean false



-- 
Edit bug report at http://bugs.php.net/bug.php?id=52057&edit=1
-- 
Try a snapshot (PHP 5.2):            
http://bugs.php.net/fix.php?id=52057&r=trysnapshot52
Try a snapshot (PHP 5.3):            
http://bugs.php.net/fix.php?id=52057&r=trysnapshot53
Try a snapshot (trunk):              
http://bugs.php.net/fix.php?id=52057&r=trysnapshottrunk
Fixed in SVN:                        
http://bugs.php.net/fix.php?id=52057&r=fixed
Fixed in SVN and need be documented: 
http://bugs.php.net/fix.php?id=52057&r=needdocs
Fixed in release:                    
http://bugs.php.net/fix.php?id=52057&r=alreadyfixed
Need backtrace:                      
http://bugs.php.net/fix.php?id=52057&r=needtrace
Need Reproduce Script:               
http://bugs.php.net/fix.php?id=52057&r=needscript
Try newer version:                   
http://bugs.php.net/fix.php?id=52057&r=oldversion
Not developer issue:                 
http://bugs.php.net/fix.php?id=52057&r=support
Expected behavior:                   
http://bugs.php.net/fix.php?id=52057&r=notwrong
Not enough info:                     
http://bugs.php.net/fix.php?id=52057&r=notenoughinfo
Submitted twice:                     
http://bugs.php.net/fix.php?id=52057&r=submittedtwice
register_globals:                    
http://bugs.php.net/fix.php?id=52057&r=globals
PHP 4 support discontinued:          http://bugs.php.net/fix.php?id=52057&r=php4
Daylight Savings:                    http://bugs.php.net/fix.php?id=52057&r=dst
IIS Stability:                       
http://bugs.php.net/fix.php?id=52057&r=isapi
Install GNU Sed:                     
http://bugs.php.net/fix.php?id=52057&r=gnused
Floating point limitations:          
http://bugs.php.net/fix.php?id=52057&r=float
No Zend Extensions:                  
http://bugs.php.net/fix.php?id=52057&r=nozend
MySQL Configuration Error:           
http://bugs.php.net/fix.php?id=52057&r=mysqlcfg

Reply via email to