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 artworkSurfaceTrait {
    /**
     * @var string The supporting materials for the artwork, e.g. Canvas, Paper, Wood, Board, etc. Supersedes surface.
     */
    protected string $artworkSurface;
 
    public function getArtworkSurface():?string
    {
        return $this->artworkSurface??null;
    }
    public function setArtworkSurface(string $artworkSurface):void
    {
        $this->artworkSurface = $artworkSurface;
    }
}