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