<?php
|
namespace JVBase\managers\SEO\render\Traits\_Properties;
|
|
if (!defined('ABSPATH')) {
|
exit;
|
}
|
trait contentSizeTrait {
|
/**
|
* @var string File size in (mega/kilo)bytes.
|
*/
|
protected string $contentSize;
|
|
public function getContentSize():?string
|
{
|
return $this->contentSize??null;
|
}
|
public function setContentSize(string $contentSize):void
|
{
|
$this->contentSize = $contentSize;
|
}
|
}
|