You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
784 B
48 lines
784 B
5 years ago
|
<?php
|
||
|
|
||
|
|
||
|
class Param
|
||
|
{
|
||
|
private $param_key;
|
||
|
private $param_value;
|
||
|
private $param_desc;
|
||
|
|
||
|
/**
|
||
|
* Param constructor.
|
||
|
* @param $param_key
|
||
|
* @param $param_value
|
||
|
* @param $param_desc
|
||
|
*/
|
||
|
public function __construct($param_key, $param_value, $param_desc)
|
||
|
{
|
||
|
$this->param_key = $param_key;
|
||
|
$this->param_value = $param_value;
|
||
|
$this->param_desc = $param_desc;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return mixed
|
||
|
*/
|
||
|
public function getParamKey()
|
||
|
{
|
||
|
return $this->param_key;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return mixed
|
||
|
*/
|
||
|
public function getParamValue()
|
||
|
{
|
||
|
return $this->param_value;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return mixed
|
||
|
*/
|
||
|
public function getParamDesc()
|
||
|
{
|
||
|
return $this->param_desc;
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|