PluginProbe
PostNL for WooCommerce / trunk
PostNL for WooCommerce vtrunk
5.9.11 5.9.10 5.9.9 5.9.8 5.9.7 5.9.6 trunk 2.5.0 2.5.1 2.5.2 2.5.3 2.5.4 2.5.5 3.1.4 3.1.5 3.1.6 3.1.7 4.0.0 4.0.1 4.0.2 4.3.2 4.3.3 4.4.0 4.4.1 4.4.2 All 71 releases
woo-postnl / src / Rest_API / Checkout / Item_Info.php

Item_Info.php in PostNL for WooCommerce trunk, at src/Rest_API/Checkout/Item_Info.php

20 lines 528 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Backward-compatibility shim for Rest_API\Checkout\Item_Info.
4 *
5 * The implementation has moved to Rest_API\Legacy\Checkout\Item_Info.
6 * This file registers a class alias so all existing callers that reference
7 * PostNLWooCommerce\Rest_API\Checkout\Item_Info continue to work unchanged.
8 *
9 * @package PostNLWooCommerce\Rest_API\Checkout
10 */
11
12 if ( ! defined( 'ABSPATH' ) ) {
13 exit;
14 }
15
16 class_alias(
17 'PostNLWooCommerce\\Rest_API\\Legacy\\Checkout\\Item_Info',
18 'PostNLWooCommerce\\Rest_API\\Checkout\\Item_Info'
19 );
20