<?php
|
namespace JVBase\inc\managers\SEO\render\Traits\_Properties;
|
|
if (!defined('ABSPATH')) {
|
exit;
|
}
|
trait answerCountTrait {
|
/**
|
* @var int The number of answers this question, answer or comment has received from the community.
|
*/
|
protected int $answerCount;
|
|
public function getAnswerCount():?int
|
{
|
return $this->answerCount??null;
|
}
|
public function setAnswerCount(int $answerCount):void
|
{
|
$this->answerCount = $answerCount;
|
}
|
}
|