<?php
|
namespace JVBase\managers\SEO\render\Traits\_Properties;
|
|
if (!defined('ABSPATH')) {
|
exit;
|
}
|
trait contentRatingTrait {
|
/**
|
* @var string Official rating of a piece of content—for example, 'MPAA PG-13'.
|
*/
|
protected string $contentRating;
|
|
public function getContentRating():?string
|
{
|
return $this->contentRating??null;
|
}
|
public function setContentRating(string $contentRating):void
|
{
|
$this->contentRating = $contentRating;
|
}
|
}
|