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.
Return Return
(object) The instance of the class.
Source Source
File: includes/class-woocommerce.php
Changelog Changelog
Version | Description |
---|---|
4.4 | Introduced. |