0 users online. Create an account or sign in to join them.Users
Class GenericExceptionHandler: Missing parameter in DocBlock
A bug in 2.2, submitted by Kaiuwe on 06 January 2011
Announcement
Symphony's issue tracker has been moved to Github.
Issues are displayed here for reference only and cannot be created or edited.
Browse
Closed#470: Class GenericExceptionHandler: Missing parameter in DocBlock
Thanks for this! Fixed in this commit
This issue is closed.
/** * The initialise function will set the exception_handler to the this class's * handler function */ public static function initialise($Log = null){ if(!is_null($Log)){ self::$_Log = $Log; } set_exception_handler(array(__CLASS__, 'handler')); }to
By the way:
public static function initialise(Log $Log = null){ if(!is_null($Log)){ self::$_Log = $Log; } set_exception_handler(array(__CLASS__, 'handler')); }