<?php
|
namespace JVBase\managers\SEO\render\Traits\_Properties;
|
|
if (!defined('ABSPATH')) {
|
exit;
|
}
|
trait maximumPhysicalAttendeeCapacityTrait {
|
/**
|
* @var int The maximum physical attendee capacity of an Event whose eventAttendanceMode is OfflineEventAttendanceMode (or the offline aspects, in the case of a MixedEventAttendanceMode).
|
*/
|
protected int $maximumPhysicalAttendeeCapacity;
|
|
public function getMaximumPhysicalAttendeeCapacity():?int
|
{
|
return $this->maximumPhysicalAttendeeCapacity??null;
|
}
|
public function setMaximumPhysicalAttendeeCapacity(int $maximumPhysicalAttendeeCapacity):void
|
{
|
$this->maximumPhysicalAttendeeCapacity = $maximumPhysicalAttendeeCapacity;
|
}
|
}
|