You appear to be a bot. Output may be restricted
Description
Return a single instance of this class
Usage
$object = dependencies_cache::instance();
Parameters
Returns
objectSource
File name: oik/libs/class-dependencies-cache.phpLines:
1 to 6 of 6
public static function instance() { if ( !isset( self::$instance ) && !( self::$instance instanceof self ) ) { self::$instance = new self; } return self::$instance; }View on GitHub View on Trac