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