Automattic\WooCommerce\Internal\Admin\Settings

Utils::get_testing_plugin_slug_suffixespublic staticWC 1.0

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() code WC 9.9.3

public static function get_testing_plugin_slug_suffixes(): array {
	return array( '-dev', '-rc', '-test', '-beta', '-alpha' );
}