Changeset 55629 for trunk/src/wp-includes/Requests/src/Requests.php
- Timestamp:
- 04/05/2023 01:10:53 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/Requests/src/Requests.php
r54997 r55629 149 149 * @var string 150 150 */ 151 const VERSION = '2.0. 5';151 const VERSION = '2.0.6'; 152 152 153 153 /** … … 643 643 * Set the default values 644 644 * 645 * The $options parameter is updated with the results. 646 * 645 647 * @param string $url URL to request 646 648 * @param array $headers Extra headers to send with the request … … 648 650 * @param string $type HTTP request type 649 651 * @param array $options Options for the request 650 * @return void $options is updated with the results652 * @return void 651 653 * 652 654 * @throws \WpOrg\Requests\Exception When the $url is not an http(s) URL. … … 825 827 * while still executing a multiple request. 826 828 * 829 * `$response` is either set to a \WpOrg\Requests\Response instance, or a \WpOrg\Requests\Exception object 830 * 827 831 * @param string $response Full response text including headers and body (will be overwritten with Response instance) 828 832 * @param array $request Request data as passed into {@see \WpOrg\Requests\Requests::request_multiple()} 829 * @return void `$response` is either set to a \WpOrg\Requests\Response instance, or a \WpOrg\Requests\Exception object833 * @return void 830 834 */ 831 835 public static function parse_multiple(&$response, $request) {
Note: See TracChangeset
for help on using the changeset viewer.