# woo-postnl/trunk/src/Rest_API/Barcode/Client.php

PostNL for WooCommerce, version trunk. 20 lines.

- Page: https://pluginprobe.com/plugins/woo-postnl/trunk/code/src/Rest_API/Barcode/Client.php
- Raw: https://pluginprobe.com/plugins/woo-postnl/trunk/raw/src/Rest_API/Barcode/Client.php
- Modified: 2026-07-20T20:49:46+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/woo-postnl/trunk/code/src/Rest_API/Barcode/Client.php#L10-L20`.

```php
<?php
/**
 * Backward-compatibility shim for Rest_API\Barcode\Client.
 *
 * The implementation has moved to Rest_API\Legacy\Barcode\Client.
 * This file registers a class alias so all existing callers that reference
 * PostNLWooCommerce\Rest_API\Barcode\Client continue to work unchanged.
 *
 * @package PostNLWooCommerce\Rest_API\Barcode
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

class_alias(
	'PostNLWooCommerce\\Rest_API\\Legacy\\Barcode\\Client',
	'PostNLWooCommerce\\Rest_API\\Barcode\\Client'
);

```
