<?php
|
namespace JVBase\managers\SEO\render\Traits\_Properties;
|
|
use JVBase\managers\SEO\render\Thing\Person\Person;
|
|
if (!defined('ABSPATH')) {
|
exit;
|
}
|
trait editorTrait {
|
/**
|
* @var Person Specifies the Person who edited the CreativeWork.
|
*/
|
protected Person $editor;
|
|
public function getEditor():?Person
|
{
|
return $this->editor??null;
|
}
|
public function setEditor(Person $editor):void
|
{
|
$this->editor = $editor;
|
}
|
}
|