<?php
|
namespace JVBase\managers\SEO\render\Traits\_Properties;
|
|
if (!defined('ABSPATH')) {
|
exit;
|
}
|
trait artEditionTrait {
|
/**
|
* @var int|string The number of copies when multiple copies of a piece of artwork are produced - e.g. for a limited edition of 20 prints, 'artEdition' refers to the total number of copies (in this example "20").
|
*/
|
protected int|string $artEdition;
|
|
public function getArtEdition():int|string|null
|
{
|
return $this->artEdition??null;
|
}
|
public function setArtEdition(int|string $artEdition):void
|
{
|
$this->artEdition = $artEdition;
|
}
|
}
|