Files
php_assessment_2/wp-content/plugins/woocommerce-payments/includes/multi-currency/Interfaces/MultiCurrencySettingsInterface.php
T

35 lines
568 B
PHP
Raw Normal View History

2025-02-05 23:15:46 +01:00
<?php
/**
* Interface MultiCurrencySettingsInterface
*
* @package WooCommerce\Payments\MultiCurrency\Interfaces
*/
namespace WCPay\MultiCurrency\Interfaces;
defined( 'ABSPATH' ) || exit;
interface MultiCurrencySettingsInterface {
/**
* Checks if dev mode is enabled.
*
* @return bool
*/
public function is_dev_mode(): bool;
/**
* Gets the plugin file path.
*
* @return string
*/
public function get_plugin_file_path(): string;
/**
* Gets the plugin version.
*
* @return string
*/
public function get_plugin_version(): string;
}