<?php
|
namespace JVBase\managers\SEO\render\Traits\_Properties;
|
|
if (!defined('ABSPATH')) {
|
exit;
|
}
|
trait thumbnailUrlTrait {
|
/**
|
* @var string A thumbnail image relevant to the Thing.
|
*/
|
protected string $thumbnailUrl;
|
|
public function getThumbnailUrl():?string
|
{
|
return $this->thumbnailUrl??null;
|
}
|
public function setThumbnailUrl(string $thumbnailUrl):void
|
{
|
$this->thumbnailUrl = $thumbnailUrl;
|
}
|
}
|