File "None.php"
Full Path: /home/jlklyejr/public_html/wp-content/test/test/test/wp-content/plugins/flexible-shipping/src/WPDesk/FS/TableRate/Rule/SpecialAction/None.php
File size: 500 bytes
MIME-type: text/x-php
Charset: utf-8
<?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;
}
}