From:             
Operating system: *nix
PHP version:      5.3.10
Package:          Class/Object related
Bug Type:         Bug
Bug description:__invoke() visibility not honored

Description:
------------
__invoke() visibility is not honored when indirectly called as $obj().
It is, when directly called, via $obj->__invoke();

Please, note as well that declaring __invoke() as static works as well, I
think 
it shouldn't (nonsense)

Test script:
---------------
<?php

class Bar {
    private function __invoke() {
        return __CLASS__;
    }
}

$b = new Bar;
echo $b();

/* this works as expected : Fatal Error */
/* echo $b->__invoke(); */

Expected result:
----------------
Call to private method Bar::__invoke() from context ...

Actual result:
--------------
Bar

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

Reply via email to