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