<?php
|
namespace JVBase\managers\SEO\render\Traits\_Properties;
|
|
use JVBase\managers\SEO\render\Thing\Intangible\Enumeration\WarrantyScope;
|
|
if (!defined('ABSPATH')) {
|
exit;
|
}
|
trait warrantyScopeTrait {
|
/**
|
* @var WarrantyScope The scope of the warranty promise.
|
*/
|
protected WarrantyScope $warrantyScope;
|
|
public function getWarrantyScope():?WarrantyScope
|
{
|
return $this->warrantyScope??null;
|
}
|
public function setWarrantyScope(WarrantyScope $warrantyScope):void
|
{
|
$this->warrantyScope = $warrantyScope;
|
}
|
}
|