You appear to be a bot. Output may be restricted
Description
Gets the main feature toggles manager instance used.
This essentially works like a Singleton, but for its drawbacks does not restrict instantiation otherwise.
Usage
$self = Yoast_Feature_Toggles::instance();
Parameters
Returns
self Main instance.
Source
File name: wordpress-seo/admin/views/class-yoast-feature-toggles.php
Lines:
1 to 7 of 7
public static function instance() { if ( self::$instance === null ) { self::$instance = new self(); } return self::$instance; }