2023-06-13 23:17:02 +03:00
|
|
|
<?php
|
|
|
|
|
/**
|
|
|
|
|
* Constants defined in this file are to help phpstan analyze code where constants outside the plugin (WordPress core constants, etc) are being used.
|
|
|
|
|
*
|
|
|
|
|
* @package WPGraphQL/WooCommerce
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
define( 'WPGRAPHQL_WOOCOMMERCE_AUTOLOAD', true );
|
|
|
|
|
define( 'WPGRAPHQL_WOOCOMMERCE_VERSION', '0.12.5' );
|
|
|
|
|
define( 'WPGRAPHQL_WOOCOMMERCE_PLUGIN_FILE', 'wp-graphql-woocommerce.php' );
|
|
|
|
|
define( 'WPGRAPHQL_WOOCOMMERCE_PLUGIN_DIR', '' );
|
|
|
|
|
define( 'WPGRAPHQL_WOOCOMMERCE_PLUGIN_URL', '' );
|
|
|
|
|
define( 'WC_SESSION_CACHE_GROUP', '' );
|
2026-03-20 13:31:13 -04:00
|
|
|
define( 'WC_DELIMITER', '|' );
|