Aucune description

class-wc-rest-shipping-zone-locations-controller.php 556B

12345678910111213141516171819202122232425262728
  1. <?php
  2. /**
  3. * REST API Shipping Zone Locations controller
  4. *
  5. * Handles requests to the /shipping/zones/<id>/locations endpoint.
  6. *
  7. * @package WooCommerce\RestApi
  8. * @since 3.0.0
  9. */
  10. defined( 'ABSPATH' ) || exit;
  11. /**
  12. * REST API Shipping Zone Locations class.
  13. *
  14. * @package WooCommerce\RestApi
  15. * @extends WC_REST_Shipping_Zone_Locations_V2_Controller
  16. */
  17. class WC_REST_Shipping_Zone_Locations_Controller extends WC_REST_Shipping_Zone_Locations_V2_Controller {
  18. /**
  19. * Endpoint namespace.
  20. *
  21. * @var string
  22. */
  23. protected $namespace = 'wc/v3';
  24. }