<?php
|
namespace JVBase\managers\SEO\render\Traits\_Properties;
|
|
if (!defined('ABSPATH')) {
|
exit;
|
}
|
trait copyrightYearTrait {
|
/**
|
* @var int The year during which the claimed copyright for the CreativeWork was first asserted.
|
*/
|
protected int $copyrightYear;
|
|
public function getCopyrightYear():?int
|
{
|
return $this->copyrightYear??null;
|
}
|
public function setCopyrightYear(int $copyrightYear):void
|
{
|
$this->copyrightYear = $copyrightYear;
|
}
|
}
|