File "ShippingContentsMeta.php"
Full Path: /home/jlklyejr/public_html/wp-content/test/wp-content/plugins/flexible-shipping/src/WPDesk/FS/TableRate/Rule/ShippingContents/ShippingContentsMeta.php
File size: 597 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
/**
* Class ShippingContentsMeta
*/
namespace WPDesk\FS\TableRate\Rule\ShippingContents;
/**
* Shipping Contents Meta.
*/
class ShippingContentsMeta {
/**
* @var string
*/
private $key;
/**
* @var mixed
*/
private $value;
/**
* @param string $key .
* @param mixed $value .
*/
public function __construct( string $key, $value ) {
$this->key = $key;
$this->value = $value;
}
/**
* @return string
*/
public function get_key(): string {
return $this->key;
}
/**
* @return mixed
*/
public function get_value() {
return $this->value;
}
}