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