Jake Vanderwerf
2026-03-08 c19264ac916707096fe294d996a1b7fb85206b34
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?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;
    }
}