<?php
|
namespace JVBase\managers\SEO\render\Traits\_Properties;
|
|
if (!defined('ABSPATH')) {
|
exit;
|
}
|
trait fatContentTrait {
|
/**
|
* @var int|float The number of fatContent.
|
*/
|
protected int|float $fatContent;
|
|
public function getFatContent():int|float|null
|
{
|
return $this->fatContent??null;
|
}
|
public function setFatContent(int|float $fatContent):void
|
{
|
$this->fatContent = $fatContent;
|
}
|
}
|