Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
test
/
test
/
test
/
wp-content
/
plugins
/
flexible-shipping
/
src
/
WPDesk
/
FS
/
TableRate
/
Rule
/
SpecialAction
:
None.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php /** * Class None * * @package WPDesk\FS\TableRate\Rule\SpecialAction */ namespace WPDesk\FS\TableRate\Rule\SpecialAction; /** * None special action. */ class None extends AbstractSpecialAction { /** * None constructor. */ public function __construct() { parent::__construct( 'none', __( 'None', 'flexible-shipping' ) ); } /** * @inheritDoc */ public function is_cancel() { return false; } /** * @inheritDoc */ public function is_stop() { return false; } }