<?php
|
namespace JVBase\managers\SEO\render\Traits\_Properties;
|
|
use JVBase\managers\SEO\render\Thing\Intangible\EntryPoint;
|
|
if (!defined('ABSPATH')) {
|
exit;
|
}
|
trait targetTrait {
|
/**
|
* @var EntryPoint|string Indicates a target EntryPoint, or url, for an Action.
|
*/
|
protected EntryPoint|string $description;
|
|
public function getDescription():EntryPoint|string|null
|
{
|
return $this->description??null;
|
}
|
public function setDescription(EntryPoint|string $description):void
|
{
|
$this->description = $description;
|
}
|
}
|