<?php
|
namespace JVBase\managers\SEO\render\Traits\_Properties;
|
|
if (!defined('ABSPATH')) {
|
exit;
|
}
|
trait _a {
|
/**
|
* @var string A description of the item
|
*/
|
protected string $description;
|
|
public function getDescription():?string
|
{
|
return $this->description??null;
|
}
|
public function setDescription(string $description):void
|
{
|
$this->description = $description;
|
}
|
}
|