Нет описания

class-wc-rest-system-status-controller.php 495B

12345678910111213141516171819202122232425262728
  1. <?php
  2. /**
  3. * REST API WC System Status controller
  4. *
  5. * Handles requests to the /system_status endpoint.
  6. *
  7. * @package WooCommerce\RestApi
  8. * @since 3.0.0
  9. */
  10. defined( 'ABSPATH' ) || exit;
  11. /**
  12. * System status controller class.
  13. *
  14. * @package WooCommerce\RestApi
  15. * @extends WC_REST_System_Status_V2_Controller
  16. */
  17. class WC_REST_System_Status_Controller extends WC_REST_System_Status_V2_Controller {
  18. /**
  19. * Endpoint namespace.
  20. *
  21. * @var string
  22. */
  23. protected $namespace = 'wc/v3';
  24. }