WC_Admin_Post_Types::request_data
Get the current request data ($_REQUEST superglobal). This method is added to ease unit testing.
Method of the class: WC_Admin_Post_Types{}
No Hooks.
Returns
Array. The $_REQUEST superglobal.
Usage
// protected - for code of main (parent) or child class $result = $this->request_data();
WC_Admin_Post_Types::request_data() WC Admin Post Types::request data code WC 10.5.0
protected function request_data() {
return $_REQUEST;
}