<?php
|
namespace JVBase\managers\SEO\render\Traits\_Properties;
|
|
use JVBase\managers\SEO\render\Thing\CreativeWork\CreativeWork;
|
|
if (!defined('ABSPATH')) {
|
exit;
|
}
|
trait workExampleTrait {
|
/**
|
* @var CreativeWork Example/instance/realization/derivation of the concept of this creative work. E.g. the paperback edition, first edition, or e-book.
|
* Inverse property: exampleOfWork
|
*/
|
protected CreativeWork $workExample;
|
|
public function getWorkExample():?CreativeWork
|
{
|
return $this->workExample??null;
|
}
|
public function setWorkExample(CreativeWork $workExample):void
|
{
|
$this->workExample = $workExample;
|
}
|
}
|