<?php
|
namespace JVBase\managers\SEO\render\Traits\_Properties;
|
|
if (!defined('ABSPATH')) {
|
exit;
|
}
|
trait addressLocalityTrait {
|
/**
|
* @var string The locality in which the street address is, and which is in the region. For example, Mountain View.
|
*/
|
protected string $addressLocality;
|
|
public function getAddressLocality():?string
|
{
|
return $this->addressLocality??null;
|
}
|
public function setAddressLocality(string $addressLocality):void
|
{
|
$this->addressLocality = $addressLocality;
|
}
|
}
|