oont-contents/plugins/flexible-shipping/classes/notices/interface-rate.php
2025-02-08 15:10:23 +01:00

23 lines
252 B
PHP

<?php
namespace WPDesk\FS\Rate;
interface RateNoticeInterface {
/**
* Show message
*
* @return string
*/
public function show_message();
/**
* Should show message
*
* @return bool
*/
public function should_show_message();
}