18 lines
420 B
PHP
18 lines
420 B
PHP
<?php
|
|
// phpcs:ignoreFile - This file contains stubs for 3rd party functions and classes that might break our PHPCS rules
|
|
|
|
if (!function_exists('members_get_cap_group')) {
|
|
function members_get_cap_group($name) {
|
|
}
|
|
}
|
|
|
|
if (!class_exists(\WC_Subscription::class)) {
|
|
class WC_Subscription extends WC_Product {
|
|
}
|
|
}
|
|
|
|
if (!function_exists('wcs_create_subscription')) {
|
|
function wcs_create_subscription($args) {
|
|
}
|
|
}
|