<?php
|
namespace JVBase\managers\SEO\render\Traits\_Properties;
|
|
if (!defined('ABSPATH')) {
|
exit;
|
}
|
trait ratingValueTrait {
|
/**
|
* @var int The rating for the content
|
*/
|
protected int $ratingValue;
|
|
public function getRatingValue():?int
|
{
|
return $this->ratingValue??null;
|
}
|
public function setRatingValue(int $ratingValue):void
|
{
|
$this->ratingValue = $ratingValue;
|
}
|
}
|