<?php
|
namespace JVBase\managers\SEO\render\Traits\_Properties;
|
|
if (!defined('ABSPATH')) {
|
exit;
|
}
|
trait transFatContentTrait {
|
/**
|
* @var int|float The number of grams of trans fat
|
*/
|
protected int|float $transFatContent;
|
|
public function getTransFatContent():int|float|null
|
{
|
return $this->transFatContent??null;
|
}
|
public function setTransFatContent(int|float $transFatContent):void
|
{
|
$this->transFatContent = $transFatContent;
|
}
|
}
|