Changeset 50842 for trunk/src/wp-includes/Requests/Session.php
- Timestamp:
- 05/11/2021 07:40:41 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/Requests/Session.php
r46586 r50842 23 23 * 24 24 * URLs will be made absolute using this as the base 25 * 25 26 * @var string|null 26 27 */ … … 29 30 /** 30 31 * Base headers for requests 32 * 31 33 * @var array 32 34 */ … … 65 67 */ 66 68 public function __construct($url = null, $headers = array(), $data = array(), $options = array()) { 67 $this->url = $url;69 $this->url = $url; 68 70 $this->headers = $headers; 69 $this->data = $data;71 $this->data = $data; 70 72 $this->options = $options; 71 73
Note: See TracChangeset
for help on using the changeset viewer.