<?php
|
namespace JVBase\managers\SEO\render\Traits\_Properties;
|
|
if (!defined('ABSPATH')) {
|
exit;
|
}
|
trait endOffsetTrait {
|
/**
|
* @var int|float The end time of the clip expressed as the number of seconds from the beginning of the work.
|
*/
|
protected int|float $endOffset;
|
|
public function getEndOffset():int|float|null
|
{
|
return $this->endOffset??null;
|
}
|
public function setEndOffset(int|float $endOffset):void
|
{
|
$this->endOffset = $endOffset;
|
}
|
}
|