<?php
|
namespace JVBase\managers\SEO\render\Traits\_Properties;
|
|
use JVBase\managers\SEO\render\Thing\Organization\Organization;
|
|
if (!defined('ABSPATH')) {
|
exit;
|
}
|
trait issuedByTrait {
|
/**
|
* @var Organization The organization issuing the item, for example a Permit, Ticket, or Certification.
|
*/
|
protected Organization $issuedBy;
|
|
public function getIssuedBy():?Organization
|
{
|
return $this->issuedBy??null;
|
}
|
public function setIssuedBy(Organization $issuedBy):void
|
{
|
$this->issuedBy = $issuedBy;
|
}
|
}
|