<?php
|
namespace JVBase\managers\SEO\render\Traits\_Properties;
|
|
if (!defined('ABSPATH')) {
|
exit;
|
}
|
trait reviewBodyTrait {
|
/**
|
* @var string The actual body of the review.
|
*/
|
protected string $reviewBody;
|
|
public function getReviewBody():?string
|
{
|
return $this->reviewBody??null;
|
}
|
public function setReviewBody(string $reviewBody):void
|
{
|
$this->reviewBody = $reviewBody;
|
}
|
}
|