| 
 Posted by Gavin Roy on 03/01/05 23:43 
I have an interface: 
 
  interface ISingleton 
  { 
 
    static function getInstance(); 
 
  } 
 
that works in 5.0.3 but in 5.1 CVS I get the following error: 
 
Fatal error: Access type for interface method 
ISingleton::getInstance() must be omitted ... 
 
If I take out the static keyword then it doesnt match the classes that 
implement it. 
 
Is this a bug, or a new intended behavior? 
 
Gavin
 
[Back to original message] 
 |