<?php
|
namespace JVBase\managers\SEO\render\Traits\_Properties;
|
|
if (!defined('ABSPATH')) {
|
exit;
|
}
|
trait repeatCountTrait {
|
/**
|
* @var int Defines the number of times a recurring Event will take place.
|
*/
|
protected int $repeatCount;
|
|
public function getRepeatCount():?int
|
{
|
return $this->repeatCount??null;
|
}
|
public function setRepeatCount(int $repeatCount):void
|
{
|
$this->repeatCount = $repeatCount;
|
}
|
}
|