Automattic\WooCommerce\LayoutTemplates
LayoutTemplateRegistry::get_instance()
Get the instance of the class.
Method of the class: LayoutTemplateRegistry{}
No Hooks.
Return
null
. Nothing (null).
Usage
$result = LayoutTemplateRegistry::get_instance(): LayoutTemplateRegistry;
LayoutTemplateRegistry::get_instance() LayoutTemplateRegistry::get instance code WC 9.7.1
public static function get_instance(): LayoutTemplateRegistry { if ( null === self::$instance ) { self::$instance = new self(); } return self::$instance; }