Changeset 51851 for trunk/src/wp-includes/class-wp-http-cookie.php
- Timestamp:
- 09/22/2021 09:21:40 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-http-cookie.php
r51824 r51851 25 25 * 26 26 * @since 2.8.0 27 * 27 28 * @var string 28 29 */ … … 33 34 * 34 35 * @since 2.8.0 36 * 35 37 * @var string 36 38 */ … … 41 43 * 42 44 * @since 2.8.0 45 * 43 46 * @var string|int|null 44 47 */ … … 49 52 * 50 53 * @since 2.8.0 54 * 51 55 * @var string 52 56 */ … … 57 61 * 58 62 * @since 2.8.0 63 * 59 64 * @var string 60 65 */ … … 62 67 63 68 /** 69 * Cookie port or comma-separated list of ports. 70 * 71 * @since 2.8.0 72 * 73 * @var int|string 74 */ 75 public $port; 76 77 /** 64 78 * host-only flag. 65 79 * 66 80 * @since 5.2.0 81 * 67 82 * @var bool 68 83 */ … … 86 101 * @type string $path Optional. Path. Default '/'. 87 102 * @type string $domain Optional. Domain. Default host of parsed $requested_url. 88 * @type int $port Optional. Port. Default null.103 * @type int|string $port Optional. Port or comma-separated list of ports. Default null. 89 104 * @type bool $host_only Optional. host-only storage flag. Default true. 90 105 * }
Note: See TracChangeset
for help on using the changeset viewer.