<?php
|
namespace JVBase\managers\SEO\render\Traits\_Properties;
|
|
use JVBase\managers\SEO\render\Thing\Intangible\Quantity\Duration;
|
|
if (!defined('ABSPATH')) {
|
exit;
|
}
|
trait timeRequiredTrait {
|
/**
|
* @var Duration Approximate or typical time it usually takes to work with or through the content of this work for the typical or target audience.
|
*/
|
protected Duration $timeRequired;
|
|
public function getTimeRequired():?Duration
|
{
|
return $this->timeRequired??null;
|
}
|
public function setTimeRequired(Duration $timeRequired):void
|
{
|
$this->timeRequired = $timeRequired;
|
}
|
}
|