<?php
|
namespace JVBase\managers\SEO\render\Traits\_Properties;
|
|
if (!defined('ABSPATH')) {
|
exit;
|
}
|
trait offerCountTrait {
|
/**
|
* @var int The number of offers for the product.
|
*/
|
protected int $offerCount;
|
|
public function getOfferCount():?int
|
{
|
return $this->offerCount??null;
|
}
|
public function setOfferCount(int $offerCount):void
|
{
|
$this->offerCount = $offerCount;
|
}
|
}
|