<?php
|
namespace JVBase\managers\SEO\render\Traits\_Properties;
|
|
use JVBase\managers\SEO\render\Thing\Place\Place;
|
|
if (!defined('ABSPATH')) {
|
exit;
|
}
|
trait hasPOSTrait {
|
/**
|
* @var Place Points-of-Sales operated by the organization or person.
|
*/
|
protected Place $hasPOS;
|
|
public function getHasPOS():?Place
|
{
|
return $this->hasPOS??null;
|
}
|
public function setHasPOS(Place $hasPOS):void
|
{
|
$this->hasPOS = $hasPOS;
|
}
|
}
|