<?php
|
namespace JVBase\managers\SEO\render\Traits\_Properties;
|
|
if (!defined('ABSPATH')) {
|
exit;
|
}
|
trait honorificPrefixTrait {
|
/**
|
* @var string An honorific prefix preceding a Person's name such as Dr/Mrs/Mr.
|
*/
|
protected string $honorificPrefix;
|
|
public function getHonorificPrefix():?string
|
{
|
return $this->honorificPrefix??null;
|
}
|
public function setHonorificPrefix(string $honorificPrefix):void
|
{
|
$this->honorificPrefix = $honorificPrefix;
|
}
|
}
|