<?php
|
namespace JVBase\managers\SEO\render\Traits\_Properties;
|
|
if (!defined('ABSPATH')) {
|
exit;
|
}
|
trait totalPriceTrait {
|
/**
|
* @var string The total price for the reservation or ticket, including applicable taxes, shipping, etc.
|
*/
|
protected string $totalPrice;
|
|
public function getTotalPrice():?string
|
{
|
return $this->totalPrice??null;
|
}
|
public function setTotalPrice(string $totalPrice):void
|
{
|
$this->totalPrice = $totalPrice;
|
}
|
}
|