<?php
|
namespace JVBase\managers\SEO\render\Thing\Intangible\Enumeration;
|
|
use JVBase\managers\SEO\render\Thing\Thing;
|
|
|
if (!defined('ABSPATH')) {
|
exit;
|
}
|
|
class CertificationStatusEnumeration extends Enumeration {
|
protected string $status;
|
protected array $allowedStatus = [
|
'active' => 'https://schema.org/CertificationActive',
|
'inactive' => 'https://schema.org/CertificationInactive',
|
];
|
}
|