<?php
|
namespace JVBase\managers\SEO\render\Traits\_Properties;
|
|
use JVBase\managers\SEO\render\Thing\Place\AdministrativeArea\Country;
|
|
if (!defined('ABSPATH')) {
|
exit;
|
}
|
trait nationalityTrait {
|
/**
|
* @var Country|string The place where the product was assembled.
|
*/
|
protected Country|string $nationality;
|
|
public function getNationality():Country|string|null
|
{
|
return $this->nationality??null;
|
}
|
public function setNationality(Country|string $nationality):void
|
{
|
$this->nationality = $nationality;
|
}
|
}
|