Fixed file and class dockblock

This commit is contained in:
Claudio Sanches 2018-03-21 20:54:10 -03:00
parent 39f1c3e8fc
commit 996d3decfe
1 changed files with 4 additions and 6 deletions

View File

@ -1,12 +1,11 @@
<?php <?php
/** /**
* WooCommerce Shipping Class * WooCommerce Shipping
* *
* Handles shipping and loads shipping methods via hooks. * Handles shipping and loads shipping methods via hooks.
* *
* @class WC_Shipping * @version 2.6.0
* @version 2.6.0 * @package WooCommerce/Classes/Shipping
* @package WooCommerce/Classes/Shipping
*/ */
if ( ! defined( 'ABSPATH' ) ) { if ( ! defined( 'ABSPATH' ) ) {
@ -14,7 +13,7 @@ if ( ! defined( 'ABSPATH' ) ) {
} }
/** /**
* WC_Shipping * Shipping class.
*/ */
class WC_Shipping { class WC_Shipping {
@ -60,7 +59,6 @@ class WC_Shipping {
* Ensures only one instance of WC_Shipping is loaded or can be loaded. * Ensures only one instance of WC_Shipping is loaded or can be loaded.
* *
* @since 2.1 * @since 2.1
* @static
* @return WC_Shipping Main instance * @return WC_Shipping Main instance
*/ */
public static function instance() { public static function instance() {