<?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;
|
}
|
}
|