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