wp/src/Tables/PostMeta.php

16 lines
262 B
PHP

<?php
namespace vlw\WP\Tables;
use vlw\xEnum;
enum PostMeta: string {
use xEnum;
public const TABLE_NAME = "postmeta";
case META_ID = "meta_id";
case POST_ID = "post_id";
case META_KEY = "meta_key";
case META_VALUE = "meta_value";
}