<?php
|
namespace JVBase\managers\SEO\render\Traits\_Properties;
|
|
if (!defined('ABSPATH')) {
|
exit;
|
}
|
trait audienceTypeTrait {
|
/**
|
* @var string The target group associated with a given audience (e.g. veterans, car owners, musicians, etc.).
|
*/
|
protected string $audienceType;
|
|
public function getAudienceType():?string
|
{
|
return $this->audienceType??null;
|
}
|
public function setAudienceType(string $audienceType):void
|
{
|
$this->audienceType = $audienceType;
|
}
|
}
|