Adding doc comments to comply with coding standard.

This commit is contained in:
Denis Dvali 2020-02-03 22:14:00 +03:00
parent 9e25706467
commit e496d6ea3f
1 changed files with 12 additions and 0 deletions

View File

@ -1,4 +1,11 @@
<?php
/**
* WooCommerce Admin
*
* @class WC_Helper_API
* @package WooCommerce/Admin
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
@ -9,6 +16,11 @@ if ( ! defined( 'ABSPATH' ) ) {
* Provides a communication interface with the WooCommerce.com Helper API.
*/
class WC_Helper_API {
/**
* Base path for API routes.
*
* @var $api_base
*/
public static $api_base;
/**