Jake Vanderwerf
2026-03-08 c19264ac916707096fe294d996a1b7fb85206b34
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?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;
    }
}