<?php
|
namespace JVBase\managers\SEO\render\Traits\_Properties;
|
|
use JVBase\managers\SEO\render\Thing\Place\Place;
|
|
if (!defined('ABSPATH')) {
|
exit;
|
}
|
trait deathPlaceTrait {
|
/**
|
* @var Place The place where the person was born.
|
*/
|
protected Place $deathPlace;
|
|
public function getDeathPlace():?Place
|
{
|
return $this->deathPlace??null;
|
}
|
public function setDeathPlace(Place $deathPlace):void
|
{
|
$this->deathPlace = $deathPlace;
|
}
|
}
|