<?php
|
namespace JVBase\managers\SEO\render\Traits\_Properties;
|
|
use JVBase\managers\SEO\render\Thing\Thing;
|
|
if (!defined('ABSPATH')) {
|
exit;
|
}
|
trait aboutTrait {
|
/**
|
* @var Thing The subject matter of an object.
|
* Inverse property: subjectOf
|
*/
|
protected Thing $about;
|
|
public function getAbout():?Thing
|
{
|
return $this->about??null;
|
}
|
public function setAbout(Thing $about):void
|
{
|
$this->about = $about;
|
}
|
}
|