<?php
|
namespace JVBase\managers\SEO\render\Traits\_Properties;
|
|
if (!defined('ABSPATH')) {
|
exit;
|
}
|
trait maxValueTrait {
|
/**
|
* @var int|float|string The upper value of some characteristic or property
|
*/
|
protected int|float|string $maxValue;
|
|
public function getMaxValue():int|float|string|null
|
{
|
return $this->maxValue??null;
|
}
|
public function setMaxValue(int|float|string $maxValue):void
|
{
|
$this->maxValue = $maxValue;
|
}
|
}
|