<?php
|
namespace JVBase\managers\SEO\render\Traits\_Properties;
|
|
if (!defined('ABSPATH')) {
|
exit;
|
}
|
trait representativeOfPageTrait {
|
/**
|
* @var bool Whether the image represents the content of the page
|
*/
|
protected bool $representativeOfPage;
|
|
public function getRepresentativeOfPage():?bool
|
{
|
return $this->representativeOfPage??null;
|
}
|
public function setRepresentativeOfPage(bool $representativeOfPage):void
|
{
|
$this->representativeOfPage = $representativeOfPage;
|
}
|
}
|