<?php
|
namespace JVBase\managers\SEO\render\Traits\_Properties;
|
|
if (!defined('ABSPATH')) {
|
exit;
|
}
|
trait reviewCountTrait {
|
/**
|
* @var int The count of total number of reviews.
|
*/
|
protected int $reviewCount;
|
|
public function getReviewCount():?int
|
{
|
return $this->reviewCount??null;
|
}
|
public function setReviewCount(int $reviewCount):void
|
{
|
$this->reviewCount = $reviewCount;
|
}
|
}
|