<?php
|
namespace JVBase\managers\SEO\render\Traits\_Properties;
|
|
if (!defined('ABSPATH')) {
|
exit;
|
}
|
trait legalNameTrait {
|
/**
|
* @var string The official name of the organization, e.g. the registered company name.
|
*/
|
protected string $legalName;
|
|
public function getLegalName():?string
|
{
|
return $this->legalName??null;
|
}
|
public function setLegalName(string $legalName):void
|
{
|
$this->legalName = $legalName;
|
}
|
}
|