<?php
|
namespace JVBase\managers\SEO\render\Traits\_Properties;
|
|
use JVBase\managers\SEO\render\Thing\Organization\Organization;
|
|
if (!defined('ABSPATH')) {
|
exit;
|
}
|
trait publisherImprintTrait {
|
/**
|
* @var Organization The publishing division which published the comic.
|
*/
|
protected Organization $publisherImprint;
|
|
public function getPublisherImprint():?Organization
|
{
|
return $this->publisherImprint??null;
|
}
|
public function setPublisherImprint(Organization $publisherImprint):void
|
{
|
$this->publisherImprint = $publisherImprint;
|
}
|
}
|