<?php
|
namespace JVBase\managers\SEO\render\Traits\_Properties;
|
|
if (!defined('ABSPATH')) {
|
exit;
|
}
|
trait givenNameTrait {
|
/**
|
* @var string Given name. In the U.S., the first name of a Person.
|
*/
|
protected string $givenName;
|
|
public function getGivenName():?string
|
{
|
return $this->givenName??null;
|
}
|
public function setGivenName(string $givenName):void
|
{
|
$this->givenName = $givenName;
|
}
|
}
|