<?php
|
namespace JVBase\managers\SEO\render\Traits\_Properties;
|
|
if (!defined('ABSPATH')) {
|
exit;
|
}
|
trait wordCountTrait {
|
/**
|
* @var int The number of words in the text of the CreativeWork such as an Article, Book, etc.
|
*/
|
protected int $wordCount;
|
|
public function getWordCount():?int
|
{
|
return $this->wordCount??null;
|
}
|
public function setWordCount(int $wordCount):void
|
{
|
$this->wordCount = $wordCount;
|
}
|
}
|