Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
post-date
/
wp-content
/
plugins
/
flexible-shipping
/
src
/
WPDesk
/
FS
/
TableRate
/
ShippingMethod
:
MethodSettings.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php /** * Interface MethodSettings * * @package WPDesk\FS\TableRate\ShippingMethod */ namespace WPDesk\FS\TableRate\ShippingMethod; /** * Interface for Method Settings. */ interface MethodSettings { /** * @param array $method_settings Current method settings. * @param bool $with_integration_settings Append integration settings. * * @return array */ public function get_settings_fields( array $method_settings, $with_integration_settings ); }