<?php
|
namespace JVBase\managers\SEO\render\Traits\_Properties;
|
|
if (!defined('ABSPATH')) {
|
exit;
|
}
|
trait bestRatingTrait {
|
/**
|
* @var int The highest value allowed in this rating system.
|
*/
|
protected int $bestRating = 5;
|
|
public function getBestRating():?int
|
{
|
return $this->bestRating??null;
|
}
|
public function setBestRating(int $bestRating):void
|
{
|
$this->bestRating = $bestRating;
|
}
|
}
|