WooCommerce::get_instance_of( string $class_name, mixed $args )

Gets an instance of a given legacy class.


Description Description

This must not be used to get instances of classes in the src directory.

This method can be useful for unit tests, since objects obtained using this method can be easily mocked by using WC_Unit_Test_Case::register_legacy_proxy_class_mocks.


Parameters Parameters

$class_name

(Required) The name of the class to get an instance for.

$args

(Required) Parameters to be passed to the class constructor or to the appropriate internal 'get_instance*of*' method.


Top ↑

Return Return

(object) The instance of the class.


Top ↑

Source Source

File: includes/class-woocommerce.php


			

Top ↑

Changelog Changelog

Changelog
Version Description
4.4 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.