<?php
|
namespace JVBase\inc\managers\SEO\render\Traits\_Properties;
|
|
if (!defined('ABSPATH')) {
|
exit;
|
}
|
trait bodyLocationTrait {
|
/**
|
* @var string Location in the body of the anatomical structure.
|
*/
|
protected string $bodyLocation;
|
|
public function getBodyLocation():?string
|
{
|
return $this->bodyLocation??null;
|
}
|
public function setBodyLocation(string $bodyLocation):void
|
{
|
$this->bodyLocation = $bodyLocation;
|
}
|
}
|