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