Ergo::shutdown PHP Method

shutdown() public static method

Called as a shutdown function, calls stop() if required
public static shutdown ( )
    public static function shutdown()
    {
        if (self::$_started) {
            self::stop();
        }
    }