Contents

Parsedown::instance( $name = 'default' )

Description

Source

File: bp-help/vendors/parsedown/Parsedown.php

1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
static function instance($name = 'default')
{
    if (isset(self::$instances[$name]))
    {
        return self::$instances[$name];
    }
 
    $instance = new static();
 
    self::$instances[$name] = $instance;
 
    return $instance;
}

Questions?

We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.