Changeset 45580 for trunk/src/wp-includes/class-wp-http-cookie.php
- Timestamp:
- 07/01/2019 08:00:12 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-http-cookie.php
r45135 r45580 212 212 * @return string Header encoded cookie name and value. 213 213 */ 214 public function getHeaderValue() { 214 public function getHeaderValue() { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.MethodNameInvalid 215 215 if ( ! isset( $this->name ) || ! isset( $this->value ) ) { 216 216 return ''; … … 235 235 * @return string 236 236 */ 237 public function getFullHeader() { 237 public function getFullHeader() { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.MethodNameInvalid 238 238 return 'Cookie: ' . $this->getHeaderValue(); 239 239 }
Note: See TracChangeset
for help on using the changeset viewer.