<?php
|
namespace JVBase\managers\SEO\render\Traits\_Properties;
|
|
if (!defined('ABSPATH')) {
|
exit;
|
}
|
trait bookingTimeTrait {
|
/**
|
* @var string The date and time the reservation was booked.
|
*/
|
protected string $bookingTime;
|
|
public function getBookingTime():?string
|
{
|
return $this->bookingTime??null;
|
}
|
public function setBookingTime(string $bookingTime):void
|
{
|
$this->bookingTime = $bookingTime;
|
}
|
}
|