<?php
|
namespace JVBase\managers\SEO\render\Traits\_Properties;
|
|
if (!defined('ABSPATH')) {
|
exit;
|
}
|
trait propertyIDTrait {
|
/**
|
* @var string A commonly used identifier for the characteristic represented by the property, e.g. a manufacturer or a standard code for a property.
|
* For our use case, the @id of a defined item elsewhere on this site
|
*/
|
protected string $propertyID;
|
|
public function getPropertyID():?string
|
{
|
return $this->propertyID??null;
|
}
|
public function setPropertyID(string $propertyID):void
|
{
|
$this->propertyID = $propertyID;
|
}
|
}
|