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