<?php
|
namespace JVBase\managers\SEO\render\Traits\_Properties;
|
|
if (!defined('ABSPATH')) {
|
exit;
|
}
|
trait postalCodeTrait {
|
/**
|
* @var string The postal code. For example, 94043.
|
*/
|
protected string $postalCode;
|
|
public function getPostalCode():?string
|
{
|
return $this->postalCode??null;
|
}
|
public function setPostalCode(string $postalCode):void
|
{
|
$this->postalCode = $postalCode;
|
}
|
}
|