<?php
|
namespace JVBase\managers\SEO\render\Traits\_Properties;
|
|
use JVBase\managers\SEO\render\Thing\Person\Person;
|
|
if (!defined('ABSPATH')) {
|
exit;
|
}
|
trait coloristTrait {
|
/**
|
* @var Person The individual who adds color to inked drawings.
|
*/
|
protected Person $colorist;
|
|
public function getColorist():?Person
|
{
|
return $this->colorist??null;
|
}
|
public function setColorist(Person $colorist):void
|
{
|
$this->colorist = $colorist;
|
}
|
}
|