for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace luya\web\jsonld;
/**
* http://schema.org/PropertyValue
*
* @author Basil Suter <[email protected]>
* @since 1.0.3
*/
trait PropertyValueTrait
{
use ThingTrait;
private $_maxValue;
public function setMaxValue($maxValue)
$this->_maxValue = $maxValue;
return $this;
}
public function getMaxValue()
return $this->_maxValue;
private $_minValue;
public function setMinValue($minValue)
$this->_minValue = $minValue;
public function getMinValue()
return $this->_minValue;
private $_measurementTechnique;
public function setMeasurementTechnique($measurementTechnique)
$this->_measurementTechnique = $measurementTechnique;
public function getMeasurementTechnique()
return $this->_measurementTechnique;
private $_propertyId;
public function setPropertyID($propertyID)
$this->_propertyId = $propertyID;
public function getPropertyID()
return $this->_propertyId;
private $_unitCode;
public function setUnitCode($unitCode)
$this->_unitCode = $unitCode;
public function getUnitCode()
return $this->_unitCode;
private $_unitText;
public function setUnitText($uniText)
$this->_unitText = $uniText;
public function getUnitText()
return $this->_unitText;
private $_value;
public function setValue($value)
$this->_value = $value;
public function getValue()
return $this->_value;