<?php
|
namespace JVBase\managers\SEO\render\Traits\_Properties;
|
|
use JVBase\managers\SEO\render\Thing\CreativeWork\CreativeWork;
|
|
if (!defined('ABSPATH')) {
|
exit;
|
}
|
trait recordedInTrait {
|
/**
|
* @var CreativeWork The CreativeWork that captured all or part of this Event.
|
* Inverse property: recordedAt
|
*/
|
protected CreativeWork $recordedIn;
|
|
public function getRecordedIn():?CreativeWork
|
{
|
return $this->recordedIn??null;
|
}
|
public function setRecordedIn(CreativeWork $recordedIn):void
|
{
|
$this->recordedIn = $recordedIn;
|
}
|
}
|