<?php
|
namespace JVBase\managers\SEO\render\Traits\_Properties;
|
|
if (!defined('ABSPATH')) {
|
exit;
|
}
|
trait isFamilyFriendlyTrait {
|
/**
|
* @var bool Indicates whether this content is family friendly.
|
*/
|
protected bool $isFamilyFriendly;
|
|
public function getIsFamilyFriendly():?bool
|
{
|
return $this->isFamilyFriendly??null;
|
}
|
public function setIsFamilyFriendly(bool $isFamilyFriendly):void
|
{
|
$this->isFamilyFriendly = $isFamilyFriendly;
|
}
|
}
|