<?php
|
namespace JVBase\managers\SEO\render\Traits\_Properties;
|
|
use JVBase\managers\SEO\render\Thing\Person\Person;
|
|
if (!defined('ABSPATH')) {
|
exit;
|
}
|
trait pencilerTrait {
|
/**
|
* @var Person The individual who draws the primary narrative artwork.
|
*/
|
protected Person $penciler;
|
|
public function getPenciler():?Person
|
{
|
return $this->penciler??null;
|
}
|
public function setPenciler(Person $penciler):void
|
{
|
$this->penciler = $penciler;
|
}
|
}
|