<?php
|
namespace JVBase\managers\SEO\render\Traits\_Properties;
|
|
use JVBase\managers\SEO\render\Thing\CreativeWork\CreativeWork;
|
|
if (!defined('ABSPATH')) {
|
exit;
|
}
|
trait isPartOfTrait {
|
/**
|
* @var CreativeWork|string Indicates an item or CreativeWork that this item, or CreativeWork (in some sense), is part of.
|
* Inverse property: hasPart
|
*/
|
protected CreativeWork|string $isPartOf;
|
|
public function getIsPartOf():CreativeWork|string|null
|
{
|
return $this->isPartOf??null;
|
}
|
public function setIsPartOf(CreativeWork|string $isPartOf):void
|
{
|
$this->isPartOf = $isPartOf;
|
}
|
}
|