<?php
|
namespace JVBase\managers\SEO\render\Traits\_Properties;
|
|
if (!defined('ABSPATH')) {
|
exit;
|
}
|
trait versionTrait {
|
/**
|
* @var int|float|string The version of the CreativeWork embodied by a specified resource.
|
*/
|
protected int|float|string $version;
|
|
public function getVersion():int|float|string|null
|
{
|
return $this->version??null;
|
}
|
public function setVersion(int|float|string $version):void
|
{
|
$this->version = $version;
|
}
|
}
|