Automattic\WooCommerce\Internal\Admin\Settings
Utils::get_testing_plugin_slug_suffixes
Get the list of plugin slug suffixes used for handling non-standard testing slugs.
Method of the class: Utils{}
No Hooks.
Returns
String[]. The list of plugin slug suffixes used for handling non-standard testing slugs.
Usage
$result = Utils::get_testing_plugin_slug_suffixes(): array;
Utils::get_testing_plugin_slug_suffixes() Utils::get testing plugin slug suffixes code WC 10.5.0
public static function get_testing_plugin_slug_suffixes(): array {
return array( '-dev', '-rc', '-test', '-beta', '-alpha' );
}