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