<?php
|
namespace JVBase\managers\SEO\render\Traits\_Properties;
|
|
if (!defined('ABSPATH')) {
|
exit;
|
}
|
trait codeValueTrait {
|
/**
|
* @var string A short textual code that uniquely identifies the value.
|
*/
|
protected string $codeValue;
|
|
public function getCodeValue():?string
|
{
|
return $this->codeValue??null;
|
}
|
public function setCodeValue(string $codeValue):void
|
{
|
$this->codeValue = $codeValue;
|
}
|
}
|