<?php
|
namespace JVBase\managers\SEO\render\Traits\_Properties;
|
|
if (!defined('ABSPATH')) {
|
exit;
|
}
|
trait countryOfAssemblyTrait {
|
/**
|
* @var string The place where the product was assembled.
|
*/
|
protected string $countryOfAssembly;
|
|
public function getCountryOfAssembly():?string
|
{
|
return $this->countryOfAssembly??null;
|
}
|
public function setCountryOfAssembly(string $countryOfAssembly):void
|
{
|
$this->countryOfAssembly = $countryOfAssembly;
|
}
|
}
|