<?php
|
namespace JVBase\managers\SEO\render\Traits\_Properties;
|
|
if (!defined('ABSPATH')) {
|
exit;
|
}
|
trait honorificSuffixTrait {
|
/**
|
* @var string An honorific suffix following a Person's name such as M.D./PhD/MSCSW.
|
*/
|
protected string $honorificSuffix;
|
|
public function getHonorificSuffix():?string
|
{
|
return $this->honorificSuffix??null;
|
}
|
public function setHonorificSuffix(string $honorificSuffix):void
|
{
|
$this->honorificSuffix = $honorificSuffix;
|
}
|
}
|