WooCommerce::call_static( string $class_name, string $method_name, mixed $parameters )
Call a static method in a class. This should be used to execute any non-idempotent method in classes from the includes
directory.
Description Description
This method can be useful for unit tests, since methods called using this method can be easily mocked by using WC_Unit_Test_Case::register_legacy_proxy_static_mocks.
Parameters Parameters
- $class_name
-
(Required) The name of the class containing the method.
- $method_name
-
(Required) The name of the method.
- $parameters
-
(Required) The parameters to pass to the method.
Return Return
(mixed) The result from the method.
Source Source
File: includes/class-woocommerce.php
Changelog Changelog
Version | Description |
---|---|
4.4 | Introduced. |