Files
shuffle_and_skirmish_website/wp-content/plugins/tiktok-for-business/utils/Method.php
2025-11-24 21:33:55 +00:00

15 lines
280 B
PHP

<?php
/**
* Abstract class used as enum for utility method to determine catalog product_id
*/
abstract class Method {
const CATALOG = 0;
const DELETE = 1;
const ADDTOCART = 2;
const PURCHASE = 3;
const STARTCHECKOUT = 4;
const VIEWCONTENT = 5;
}