1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| <?php
| namespace JVBase\managers\SEO\render\Traits\_Properties;
|
| use JVBase\managers\SEO\render\Traits\_Helpers\arrayHelper;
|
| if (!defined('ABSPATH')) {
| exit;
| }
| trait skuTrait {
| /**
| * @var string The Stock Keeping Unit (SKU), i.e. a merchant-specific identifier for a product or service, or the product to which the offer refers.
| */
| protected string $sku;
|
| public function getSku():?string
| {
| return $this->sku??null;
| }
| public function setSku(string $sku):void
| {
| $this->sku = $sku;
| }
| }
|
|