<?php
|
namespace JVBase\managers\SEO\render\Traits\_Properties;
|
|
if (!defined('ABSPATH')) {
|
exit;
|
}
|
trait headlineTrait {
|
/**
|
* @var string Headline of the article.
|
*/
|
protected string $headline;
|
|
public function getHeadline():?string
|
{
|
return $this->headline??null;
|
}
|
public function setHeadline(string $headline):void
|
{
|
$this->headline = $headline;
|
}
|
}
|