# woocommerce-pos/trunk/includes/API/V2/Shipping_Methods_Controller.php

WCPOS – Point of Sale (POS) plugin for WooCommerce, version trunk. 22 lines.

- Page: https://pluginprobe.com/plugins/woocommerce-pos/trunk/code/includes/API/V2/Shipping_Methods_Controller.php
- Raw: https://pluginprobe.com/plugins/woocommerce-pos/trunk/raw/includes/API/V2/Shipping_Methods_Controller.php
- Modified: 2026-08-25T07:52:20+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/woocommerce-pos/trunk/code/includes/API/V2/Shipping_Methods_Controller.php#L10-L20`.

```php
<?php
/**
 * WCPOS REST API v2 service pass-through.
 *
 * @package WCPOS\WooCommercePOS\API\V2
 */

namespace WCPOS\WooCommercePOS\API\V2;

/**
 * The wcpos/v2 pass-through of the v1 Shipping_Methods_Controller service — identical behavior,
 * versioned namespace (map #544 boundary ruling: everything under one version).
 */
class Shipping_Methods_Controller extends \WCPOS\WooCommercePOS\API\V1\Shipping_Methods_Controller {
	/**
	 * Endpoint namespace.
	 *
	 * @var string
	 */
	protected $namespace = 'wcpos/v2';
}

```
