<?php
|
namespace JVBase\managers\SEO\render\Traits\_Properties;
|
|
if (!defined('ABSPATH')) {
|
exit;
|
}
|
trait reservationIdTrait {
|
/**
|
* @var string A reservationId of the item
|
*/
|
protected string $reservationId;
|
|
public function getReservationId():?string
|
{
|
return $this->reservationId??null;
|
}
|
public function setReservationId(string $reservationId):void
|
{
|
$this->reservationId = $reservationId;
|
}
|
}
|