<?php
|
namespace JVBase\managers\SEO\render\Traits\_Properties;
|
|
if (!defined('ABSPATH')) {
|
exit;
|
}
|
trait servingSizeTrait {
|
/**
|
* @var string The serving size, in terms of the number of volume or mass
|
*/
|
protected string $servingSize;
|
|
public function getServingSize():?string
|
{
|
return $this->servingSize??null;
|
}
|
public function setServingSize(string $servingSize):void
|
{
|
$this->servingSize = $servingSize;
|
}
|
}
|